• Home
  • Raw
  • Download

Lines Matching refs:__nb

1206     static char* __identify_padding(char* __nb, char* __ne,
1214 static void __widen_and_group_int(char* __nb, char* __np, char* __ne,
1217 static void __widen_and_group_float(char* __nb, char* __np, char* __ne,
1224 __num_put<_CharT>::__widen_and_group_int(char* __nb, char* __np, char* __ne,
1233 __ct.widen(__nb, __ne, __ob);
1234 __oe = __ob + (__ne - __nb);
1239 char* __nf = __nb;
1265 reverse(__ob + (__nf - __nb), __oe);
1270 __op = __ob + (__np - __nb);
1275 __num_put<_CharT>::__widen_and_group_float(char* __nb, char* __np, char* __ne,
1283 char* __nf = __nb;
1325 reverse(__ob + (__nf - __nb), __oe);
1343 __op = __ob + (__np - __nb);
1672 char* __nb = __nar;
1676 __nc = snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1679 __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt,
1684 __nc = snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1686 __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt, __v);
1693 __nc = asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1695 __nc = __asprintf_l(&__nb, __cloc(), __fmt,
1700 __nc = asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1702 __nc = __asprintf_l(&__nb, __cloc(), __fmt, (int)__iob.precision(), __v);
1704 if (__nb == 0)
1706 __nbh.reset(__nb);
1708 char* __ne = __nb + __nc;
1709 char* __np = this->__identify_padding(__nb, __ne, __iob);
1714 if (__nb != __nar)
1723 this->__widen_and_group_float(__nb, __np, __ne, __ob, __op, __oe, __iob.getloc());
1741 char* __nb = __nar;
1745 __nc = snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt,
1748 __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt,
1753 __nc = snprintf_l(__nb, __nbuf, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1755 __nc = __snprintf_l(__nb, __nbuf, __cloc(), __fmt, __v);
1762 __nc = asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, (int)__iob.precision(), __v);
1764 __nc = __asprintf_l(&__nb, __cloc(), __fmt,
1769 __nc = asprintf_l(&__nb, _LIBCPP_GET_C_LOCALE, __fmt, __v);
1771 __nc = __asprintf_l(&__nb, __cloc(), __fmt, __v);
1773 if (__nb == 0)
1775 __nbh.reset(__nb);
1777 char* __ne = __nb + __nc;
1778 char* __np = this->__identify_padding(__nb, __ne, __iob);
1783 if (__nb != __nar)
1792 this->__widen_and_group_float(__nb, __np, __ne, __ob, __op, __oe, __iob.getloc());
2592 void __do_put(char* __nb, char*& __ne, const tm* __tm,
2688 char_type* __nb = __nar;
2689 char_type* __ne = __nb + 100;
2690 __do_put(__nb, __ne, __tm, __fmt, __mod);
2691 return _VSTD::copy(__nb, __ne, __s);