Lines Matching refs:__nar
1559 char __nar[__nbuf];
1561 int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1563 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v);
1565 char* __ne = __nar + __nc;
1566 char* __np = this->__identify_padding(__nar, __ne, __iob);
1567 // Stage 2 - Widen __nar while adding thousands separators
1571 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
1589 char __nar[__nbuf];
1591 int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1593 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v);
1595 char* __ne = __nar + __nc;
1596 char* __np = this->__identify_padding(__nar, __ne, __iob);
1597 // Stage 2 - Widen __nar while adding thousands separators
1601 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
1619 char __nar[__nbuf];
1621 int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1623 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v);
1625 char* __ne = __nar + __nc;
1626 char* __np = this->__identify_padding(__nar, __ne, __iob);
1627 // Stage 2 - Widen __nar while adding thousands separators
1631 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
1649 char __nar[__nbuf];
1651 int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1653 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v);
1655 char* __ne = __nar + __nc;
1656 char* __np = this->__identify_padding(__nar, __ne, __iob);
1657 // Stage 2 - Widen __nar while adding thousands separators
1661 this->__widen_and_group_int(__nar, __np, __ne, __o, __op, __oe, __iob.getloc());
1677 char __nar[__nbuf];
1678 char* __nb = __nar;
1716 // Stage 2 - Widen __nar while adding thousands separators
1720 if (__nb != __nar)
1746 char __nar[__nbuf];
1747 char* __nb = __nar;
1785 // Stage 2 - Widen __nar while adding thousands separators
1789 if (__nb != __nar)
1813 char __nar[__nbuf];
1815 int __nc = snprintf_l(__nar, sizeof(__nar), _LIBCPP_GET_C_LOCALE, __fmt, __v);
1817 int __nc = __snprintf_l(__nar, sizeof(__nar), __cloc(), __fmt, __v);
1819 char* __ne = __nar + __nc;
1820 char* __np = this->__identify_padding(__nar, __ne, __iob);
1821 // Stage 2 - Widen __nar
1826 __ct.widen(__nar, __ne, __o);
1827 __oe = __o + (__ne - __nar);
1831 __op = __o + (__np - __nar);
2693 char_type __nar[100];
2694 char_type* __nb = __nar;