Lines Matching refs:__nb

1113     static char* __identify_padding(char* __nb, char* __ne,
1121 static void __widen_and_group_int(char* __nb, char* __np, char* __ne,
1124 static void __widen_and_group_float(char* __nb, char* __np, char* __ne,
1131 __num_put<_CharT>::__widen_and_group_int(char* __nb, char* __np, char* __ne,
1140 __ct.widen(__nb, __ne, __ob);
1141 __oe = __ob + (__ne - __nb);
1146 char* __nf = __nb;
1172 reverse(__ob + (__nf - __nb), __oe);
1177 __op = __ob + (__np - __nb);
1182 __num_put<_CharT>::__widen_and_group_float(char* __nb, char* __np, char* __ne,
1190 char* __nf = __nb;
1232 reverse(__ob + (__nf - __nb), __oe);
1250 __op = __ob + (__np - __nb);
1567 char* __nb = __nar;
1570 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1573 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1578 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1580 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1581 if (__nb == 0)
1583 __nbh.reset(__nb);
1585 char* __ne = __nb + __nc;
1586 char* __np = this->__identify_padding(__nb, __ne, __iob);
1591 if (__nb != __nar)
1600 this->__widen_and_group_float(__nb, __np, __ne, __ob, __op, __oe, __iob.getloc());
1618 char* __nb = __nar;
1621 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1624 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1629 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1631 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1632 if (__nb == 0)
1634 __nbh.reset(__nb);
1636 char* __ne = __nb + __nc;
1637 char* __np = this->__identify_padding(__nb, __ne, __iob);
1642 if (__nb != __nar)
1651 this->__widen_and_group_float(__nb, __np, __ne, __ob, __op, __oe, __iob.getloc());
2483 void __do_put(char* __nb, char*& __ne, const tm* __tm,
2579 char_type* __nb = __nar;
2580 char_type* __ne = __nb + 100;
2581 __do_put(__nb, __ne, __tm, __fmt, __mod);
2582 return _VSTD::copy(__nb, __ne, __s);