Searched refs:__nb (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __locale | 1338 _OutputIterator operator()(_OutputIterator __s, const char* __nb, const char* __ne) const; 1344 …_LIBCPP_HIDE_FROM_ABI _OutputIterator operator()(_OutputIterator __s, const char* __nb, const char… 1345 for (; __nb < __ne; ++__nb, ++__s) 1346 *__s = *__nb; 1360 …_LIBCPP_HIDE_FROM_ABI _OutputIterator operator()(_OutputIterator __s, const char* __nb, const char… 1363 while (__nb < __ne && __r != error) { 1367 const char* __nn = __nb; 1368 …__r = do_in(__mb, __nb, __ne - __nb > __sz ? __nb + __sz : __ne, __nn, __buf, __buf +… 1369 if (__r == codecvt_base::error || __nn == __nb) 1373 __nb = __nn; [all …]
|
H A D | deque | 2069 size_type __nb = __recommend_blocks(__n + __map_.empty()); 2072 __back_capacity = std::min(__back_capacity, __nb); // don't take more than you need 2073 __nb -= __back_capacity; // number of blocks need to allocate 2074 // If __nb == 0, then we have sufficient capacity. 2075 if (__nb == 0) { 2083 // Else if __nb <= __map_.capacity() - __map_.size() then we need to allocate __nb buffers 2084 else if (__nb <= __map_.capacity() - 2088 for (; __nb > 0; --__nb, __start_ += __block_size - (__map_.size() == 1)) { 2094 for (; __nb > 0; --__nb, ++__back_capacity) 2105 // Else need to allocate __nb buffers, *and* we need to reallocate __map_. [all …]
|
H A D | locale | 1068 static char* __identify_padding(char* __nb, char* __ne, const ios_base& __iob); 1074 …char* __nb, char* __np, char* __ne, _CharT* __ob, _CharT*& __op, _CharT*& __oe, const locale& __lo… 1076 …char* __nb, char* __np, char* __ne, _CharT* __ob, _CharT*& __op, _CharT*& __oe, const locale& __lo… 1081 …char* __nb, char* __np, char* __ne, _CharT* __ob, _CharT*& __op, _CharT*& __oe, const locale& __lo… 1086 __ct.widen(__nb, __ne, __ob); 1087 __oe = __ob + (__ne - __nb); 1090 char* __nf = __nb; 1111 std::reverse(__ob + (__nf - __nb), __oe); 1116 __op = __ob + (__np - __nb); 1121 …char* __nb, char* __np, char* __ne, _CharT* __ob, _CharT*& __op, _CharT*& __oe, const locale& __lo… [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | locale.cpp | 4205 char* __num_put_base::__identify_padding(char* __nb, char* __ne, const ios_base& __iob) { in __identify_padding() argument 4208 if (__nb[0] == '-' || __nb[0] == '+') in __identify_padding() 4209 return __nb + 1; in __identify_padding() 4210 if (__ne - __nb >= 2 && __nb[0] == '0' && (__nb[1] == 'x' || __nb[1] == 'X')) in __identify_padding() 4211 return __nb + 2; in __identify_padding() 4219 return __nb; in __identify_padding() 5040 void __time_put::__do_put(char* __nb, char*& __ne, const tm* __tm, char __fmt, char __mod) const { in __do_put() argument 5044 size_t n = strftime_l(__nb, countof(__nb, __ne), fmt, __tm, __loc_); in __do_put() 5045 __ne = __nb + n; in __do_put() 5054 const char* __nb = __nar; in __do_put() local [all …]
|
/freebsd/sys/contrib/zstd/programs/ |
H A D | zstdcli.c | 763 const char* __nb; \ 764 NEXT_FIELD(__nb); \ 765 val32 = readU32FromChar(&__nb); \
|