Lines Matching refs:_base64Chars
18 int _base64Chars[]= {'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T… variable
171 *_To = _Tr::to_char_type(_base64Chars[_3to4.b64_0()]); ++_To; in put()
172 *_To = _Tr::to_char_type(_base64Chars[_3to4.b64_1()]); ++_To; in put()
183 *_To = _Tr::to_char_type(_base64Chars[_3to4.b64_0()]); ++_To; in put()
184 *_To = _Tr::to_char_type(_base64Chars[_3to4.b64_1()]); ++_To; in put()
185 *_To = _Tr::to_char_type(_base64Chars[_3to4.b64_2()]); ++_To; in put()
193 *_To = _Tr::to_char_type(_base64Chars[_3to4.b64_0()]); ++_To; in put()
194 *_To = _Tr::to_char_type(_base64Chars[_3to4.b64_1()]); ++_To; in put()
195 *_To = _Tr::to_char_type(_base64Chars[_3to4.b64_2()]); ++_To; in put()
196 *_To = _Tr::to_char_type(_base64Chars[_3to4.b64_3()]); ++_To; in put()
355 if(_base64Chars[62] == _Ch) in _getCharType()
358 if(_base64Chars[63] == _Ch) in _getCharType()
361 if((_base64Chars[0] <= _Ch) && (_base64Chars[25] >= _Ch)) in _getCharType()
362 return _Ch - _base64Chars[0]; in _getCharType()
364 if((_base64Chars[26] <= _Ch) && (_base64Chars[51] >= _Ch)) in _getCharType()
365 return _Ch - _base64Chars[26] + 26; in _getCharType()
367 if((_base64Chars[52] <= _Ch) && (_base64Chars[61] >= _Ch)) in _getCharType()
368 return _Ch - _base64Chars[52] + 52; in _getCharType()