• Home
  • Raw
  • Download

Lines Matching refs:__nb

1059     static char* __identify_padding(char* __nb, char* __ne,
1067 static void __widen_and_group_int(char* __nb, char* __np, char* __ne,
1070 static void __widen_and_group_float(char* __nb, char* __np, char* __ne,
1077 __num_put<_CharT>::__widen_and_group_int(char* __nb, char* __np, char* __ne,
1086 __ct.widen(__nb, __ne, __ob);
1087 __oe = __ob + (__ne - __nb);
1092 char* __nf = __nb;
1118 reverse(__ob + (__nf - __nb), __oe);
1123 __op = __ob + (__np - __nb);
1128 __num_put<_CharT>::__widen_and_group_float(char* __nb, char* __np, char* __ne,
1136 char* __nf = __nb;
1178 reverse(__ob + (__nf - __nb), __oe);
1196 __op = __ob + (__np - __nb);
1509 char* __nb = __nar;
1512 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1515 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1520 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1522 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1523 if (__nb == 0)
1525 __nbh.reset(__nb);
1527 char* __ne = __nb + __nc;
1528 char* __np = this->__identify_padding(__nb, __ne, __iob);
1533 if (__nb != __nar)
1542 this->__widen_and_group_float(__nb, __np, __ne, __ob, __op, __oe, __iob.getloc());
1560 char* __nb = __nar;
1563 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1566 __nc = __libcpp_snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1571 … __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1573 __nc = __libcpp_asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1574 if (__nb == 0)
1576 __nbh.reset(__nb);
1578 char* __ne = __nb + __nc;
1579 char* __np = this->__identify_padding(__nb, __ne, __iob);
1584 if (__nb != __nar)
1593 this->__widen_and_group_float(__nb, __np, __ne, __ob, __op, __oe, __iob.getloc());
2392 void __do_put(char* __nb, char*& __ne, const tm* __tm,
2488 char_type* __nb = __nar;
2489 char_type* __ne = __nb + 100;
2490 __do_put(__nb, __ne, __tm, __fmt, __mod);
2491 return _VSTD::copy(__nb, __ne, __s);