Home
last modified time | relevance | path

Searched refs:__ws (Results 1 – 16 of 16) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
H A Dpath.cc505 basic_string<wchar_t> __ws; in _S_convert_loc() local
506 if (!__str_codecvt_in_all(__first, __last, __ws, __cvt)) in _S_convert_loc()
511 return __ws; in _S_convert_loc()
513 return _Cvt<wchar_t>::_S_convert(__ws.data(), __ws.data() + __ws.size()); in _S_convert_loc()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
H A Dpath.cc502 basic_string<wchar_t> __ws; in _S_convert_loc() local
503 if (!__str_codecvt_in_all(__first, __last, __ws, __cvt)) in _S_convert_loc()
508 return __ws; in _S_convert_loc()
510 return _Cvt<wchar_t>::_S_convert(__ws.data(), __ws.data() + __ws.size()); in _S_convert_loc()
H A Dstd-path.cc699 basic_string<wchar_t> __ws; in _S_convert_loc() local
700 if (!__str_codecvt_in(__first, __last, __ws, __cvt)) in _S_convert_loc()
705 return __ws; in _S_convert_loc()
707 return _Cvt<wchar_t>::_S_convert(__ws.data(), __ws.data() + __ws.size()); in _S_convert_loc()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dlocale_facets.tcc1046 _CharT* __ws = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) in _M_insert_float() local
1048 __ctype.widen(__cs, __cs + __len, __ws); in _M_insert_float()
1055 __wp = __ws + (__p - __cs); in _M_insert_float()
1075 __ws2[0] = __ws[0]; in _M_insert_float()
1081 __ws + __off, __len); in _M_insert_float()
1084 __ws = __ws2; in _M_insert_float()
1093 _M_pad(__fill, __w, __io, __ws3, __ws, __len); in _M_insert_float()
1094 __ws = __ws3; in _M_insert_float()
1100 return std::__write(__s, __ws, __len); in _M_insert_float()
H A Dostream.tcc340 _CharT *__ws = __pg.__get(); in operator <<()
342 __ws[__i] = __out.widen(__s[__i]); in operator <<()
343 __ostream_insert(__out, __ws, __clen); in operator <<()
H A Dstreambuf_iterator.h312 _M_put(const _CharT* __ws, streamsize __len) in _GLIBCXX_VISIBILITY()
315 && __builtin_expect(this->_M_sbuf->sputn(__ws, __len) != __len, in _GLIBCXX_VISIBILITY()
H A Dlocale_facets.h119 __write(ostreambuf_iterator<_CharT> __s, const _CharT* __ws, int __len) in _GLIBCXX_VISIBILITY()
121 __s._M_put(__ws, __len); in _GLIBCXX_VISIBILITY()
129 __write(_OutIter __s, const _CharT* __ws, int __len) in _GLIBCXX_VISIBILITY()
132 *__s = __ws[__j]; in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dlocale_facets.tcc1064 _CharT* __ws = static_cast<_CharT*>(__builtin_alloca(sizeof(_CharT) in _M_insert_float() local
1066 __ctype.widen(__cs, __cs + __len, __ws); in _M_insert_float()
1073 __wp = __ws + (__p - __cs); in _M_insert_float()
1093 __ws2[0] = __ws[0]; in _M_insert_float()
1099 __ws + __off, __len); in _M_insert_float()
1102 __ws = __ws2; in _M_insert_float()
1111 _M_pad(__fill, __w, __io, __ws3, __ws, __len); in _M_insert_float()
1112 __ws = __ws3; in _M_insert_float()
1118 return std::__write(__s, __ws, __len); in _M_insert_float()
H A Dostream.tcc326 _CharT *__ws = __pg.__get(); in operator <<()
328 __ws[__i] = __out.widen(__s[__i]); in operator <<()
329 __ostream_insert(__out, __ws, __clen); in operator <<()
H A Dstreambuf_iterator.h323 _M_put(const _CharT* __ws, streamsize __len) in _GLIBCXX_VISIBILITY()
326 && __builtin_expect(this->_M_sbuf->sputn(__ws, __len) != __len, in _GLIBCXX_VISIBILITY()
H A Dlocale_facets.h122 __write(ostreambuf_iterator<_CharT> __s, const _CharT* __ws, int __len) in _GLIBCXX_VISIBILITY()
124 __s._M_put(__ws, __len); in _GLIBCXX_VISIBILITY()
132 __write(_OutIter __s, const _CharT* __ws, int __len) in _GLIBCXX_VISIBILITY()
135 *__s = __ws[__j]; in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++17/
H A Dfs_path.cc1958 basic_string<wchar_t> __ws; in _S_convert_loc() local
1959 if (!__str_codecvt_in_all(__first, __last, __ws, __cvt)) in _S_convert_loc()
1964 return __ws; in _S_convert_loc()
1966 return _Cvt<wchar_t>::_S_convert(__ws.data(), __ws.data() + __ws.size()); in _S_convert_loc()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dlocale3772 wide_string __ws(2*(__frm_end - __frm), _Elem());
3774 __ws.resize(__ws.capacity());
3779 _Elem* __to = &__ws[0];
3780 _Elem* __to_end = __to + __ws.size();
3794 __ws.resize(__to - &__ws[0]);
3796 __ws.append((const _Elem*)__frm, (const _Elem*)__frm_end);
3802 __ws.resize(__to_nxt - &__ws[0]);
3807 ptrdiff_t __s = __to_nxt - &__ws[0];
3808 __ws.resize(2 * __s);
3809 __to = &__ws[0] + __s;
[all …]
H A Dutility1245 _Size __ws = __b + __rotate(__a, 31) + __c;
1246 _Size __r = __shift_mix((__vf + __ws) * __k2 + (__wf + __vs) * __k0);
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++17/
H A Dfs_path.cc1954 basic_string<wchar_t> __ws; in _S_convert_loc() local
1955 if (!__str_codecvt_in_all(__first, __last, __ws, __cvt)) in _S_convert_loc()
1959 return _S_convert(std::move(__ws)); in _S_convert_loc()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/
H A DChangeLog-20046180 __digits to do_put(..., const string_type&): __ws isn't