Searched refs:_Ch (Results 1 – 2 of 2) sorted by relevance
353 int _getCharType(int _Ch) const in _getCharType() argument355 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()370 if(_Ch == _Tr::to_int_type('=')) in _getCharType()
926 template <class _Ch, class _Tr>929 ostreambuf_iterator<_Ch, _Tr>930 __pad_and_output(ostreambuf_iterator<_Ch, _Tr> __s,931 const _Ch* __ob, const _Ch* __op, const _Ch* __oe,932 ios_base& __iob, _Ch __fl);