Searched refs:__wb (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__ostream/ |
H A D | basic_ostream.h | 589 _CharT* __wb = __wbb; variable 592 __wb = (_CharT*)malloc(__len * sizeof(_CharT)); 593 if (__wb == 0) 595 __h.reset(__wb); 597 for (_CharT* __p = __wb; *__strn != '\0'; ++__strn, ++__p) 601 __wb, 602 (__os.flags() & ios_base::adjustfield) == ios_base::left ? __wb + __len : __wb, 603 __wb + __len,
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __locale | 1266 _OutputIterator operator()(_OutputIterator __s, const _CharT* __wb, const _CharT* __we) const; 1272 …_LIBCPP_HIDE_FROM_ABI _OutputIterator operator()(_OutputIterator __s, const _CharT* __wb, const _C… 1273 for (; __wb < __we; ++__wb, ++__s) 1274 *__s = *__wb; 1288 …_LIBCPP_HIDE_FROM_ABI _OutputIterator operator()(_OutputIterator __s, const _CharT* __wb, const _C… 1291 while (__wb < __we && __r != error) { 1295 const char16_t* __wn = (const char16_t*)__wb; 1296 … __r = do_out(__mb, (const char16_t*)__wb, (const char16_t*)__we, __wn, __buf, __buf + __sz, __bn); 1297 if (__r == codecvt_base::error || __wn == (const char16_t*)__wb) 1301 __wb = (const _CharT*)__wn; [all …]
|
H A D | locale | 2111 void __do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, char __fmt, char __mod) const; 2440 unique_ptr<char_type, void (*)(void*)>& __wb, 2480 unique_ptr<char_type, void (*)(void*)>& __wb, 2505 __wn = __wb.get(); 2585 std::__double_or_nothing(__wb, __wn, __we); 2612 std::__double_or_nothing(__wb, __wn, __we); 2616 if (__wn == __wb.get()) { 2647 unique_ptr<char_type, void (*)(void*)> __wb(__wbuf, __do_nothing); 2653 if (__do_get(__b, __e, __intl, __loc, __iob.flags(), __err, __neg, __ct, __wb, __wn, __we)) { 2660 if (__wn - __wb.get() > __bz - 2) { [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | locale.cpp | 5049 void __time_put::__do_put(wchar_t* __wb, wchar_t*& __we, const tm* __tm, char __fmt, char __mod) co… in __do_put() argument 5055 size_t j = __libcpp_mbsrtowcs_l(__wb, &__nb, countof(__wb, __we), &mb, __loc_); in __do_put() 5058 __we = __wb + j; in __do_put()
|