Lines Matching refs:tmp_length
1538 size_t tmp_length; in MAX_ROOM_NEEDED() local
1545 tmp_length = in MAX_ROOM_NEEDED()
1553 tmp_length = in MAX_ROOM_NEEDED()
1559 tmp_length = in MAX_ROOM_NEEDED()
1564 if (tmp_length < precision) in MAX_ROOM_NEEDED()
1565 tmp_length = precision; in MAX_ROOM_NEEDED()
1567 tmp_length = xsum (tmp_length, tmp_length); in MAX_ROOM_NEEDED()
1569 tmp_length = xsum (tmp_length, 1); in MAX_ROOM_NEEDED()
1575 tmp_length = in MAX_ROOM_NEEDED()
1583 tmp_length = in MAX_ROOM_NEEDED()
1589 tmp_length = in MAX_ROOM_NEEDED()
1594 if (tmp_length < precision) in MAX_ROOM_NEEDED()
1595 tmp_length = precision; in MAX_ROOM_NEEDED()
1597 tmp_length = xsum (tmp_length, 1); in MAX_ROOM_NEEDED()
1603 tmp_length = in MAX_ROOM_NEEDED()
1611 tmp_length = in MAX_ROOM_NEEDED()
1617 tmp_length = in MAX_ROOM_NEEDED()
1622 if (tmp_length < precision) in MAX_ROOM_NEEDED()
1623 tmp_length = precision; in MAX_ROOM_NEEDED()
1625 tmp_length = xsum (tmp_length, 2); in MAX_ROOM_NEEDED()
1630 tmp_length = in MAX_ROOM_NEEDED()
1638 tmp_length = in MAX_ROOM_NEEDED()
1645 tmp_length = xsum (tmp_length, precision); in MAX_ROOM_NEEDED()
1649 tmp_length = in MAX_ROOM_NEEDED()
1651 tmp_length = xsum (tmp_length, precision); in MAX_ROOM_NEEDED()
1656 tmp_length = in MAX_ROOM_NEEDED()
1662 tmp_length = in MAX_ROOM_NEEDED()
1667 if (tmp_length < precision) in MAX_ROOM_NEEDED()
1668 tmp_length = precision; in MAX_ROOM_NEEDED()
1670 tmp_length = xsum (tmp_length, 12); in MAX_ROOM_NEEDED()
1676 tmp_length = MB_CUR_MAX; in MAX_ROOM_NEEDED()
1679 tmp_length = 1; in MAX_ROOM_NEEDED()
1694 tmp_length = local_wcsnlen (arg, precision); in MAX_ROOM_NEEDED()
1696 tmp_length = local_wcslen (arg); in MAX_ROOM_NEEDED()
1729 tmp_length = local_strnlen (arg, precision); in MAX_ROOM_NEEDED()
1731 tmp_length = strlen (arg); in MAX_ROOM_NEEDED()
1737 tmp_length = in MAX_ROOM_NEEDED()
1757 tmp_length = xsum (tmp_length, width); in MAX_ROOM_NEEDED()
1760 if (tmp_length < width) in MAX_ROOM_NEEDED()
1761 tmp_length = width; in MAX_ROOM_NEEDED()
1765 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */ in MAX_ROOM_NEEDED()
1767 return tmp_length; in MAX_ROOM_NEEDED()
2946 size_t tmp_length; in VASNPRINTF() local
3016 tmp_length = in VASNPRINTF()
3022 tmp_length = in VASNPRINTF()
3027 if (tmp_length < precision) in VASNPRINTF()
3028 tmp_length = precision; in VASNPRINTF()
3030 tmp_length = xsum (tmp_length, 12); in VASNPRINTF()
3032 if (tmp_length < width) in VASNPRINTF()
3033 tmp_length = width; in VASNPRINTF()
3035 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */ in VASNPRINTF()
3037 if (tmp_length <= sizeof (tmpbuf) / sizeof (DCHAR_T)) in VASNPRINTF()
3041 size_t tmp_memsize = xtimes (tmp_length, sizeof (DCHAR_T)); in VASNPRINTF()
3397 if (count >= tmp_length) in VASNPRINTF()
3453 size_t tmp_length; in VASNPRINTF() local
3531 tmp_length = (type == TYPE_LONGDOUBLE ? LDBL_DIG + 1 : DBL_DIG + 1); in VASNPRINTF()
3533 tmp_length = (type == TYPE_LONGDOUBLE ? LDBL_DIG + 1 : 0); in VASNPRINTF()
3535 tmp_length = LDBL_DIG + 1; in VASNPRINTF()
3537 tmp_length = DBL_DIG + 1; in VASNPRINTF()
3539 tmp_length = 0; in VASNPRINTF()
3541 if (tmp_length < precision) in VASNPRINTF()
3542 tmp_length = precision; in VASNPRINTF()
3554 if (exponent >= 0 && tmp_length < exponent + precision) in VASNPRINTF()
3555 tmp_length = exponent + precision; in VASNPRINTF()
3570 if (exponent >= 0 && tmp_length < exponent + precision) in VASNPRINTF()
3571 tmp_length = exponent + precision; in VASNPRINTF()
3576 tmp_length = xsum (tmp_length, 12); in VASNPRINTF()
3578 if (tmp_length < width) in VASNPRINTF()
3579 tmp_length = width; in VASNPRINTF()
3581 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */ in VASNPRINTF()
3583 if (tmp_length <= sizeof (tmpbuf) / sizeof (DCHAR_T)) in VASNPRINTF()
3587 size_t tmp_memsize = xtimes (tmp_length, sizeof (DCHAR_T)); in VASNPRINTF()
4583 if (count >= tmp_length) in VASNPRINTF()
4633 size_t tmp_length; in VASNPRINTF() local
4745 tmp_length = in VASNPRINTF()
4750 if (tmp_length <= sizeof (tmpbuf) / sizeof (TCHAR_T)) in VASNPRINTF()
4754 size_t tmp_memsize = xtimes (tmp_length, sizeof (TCHAR_T)); in VASNPRINTF()
5153 size_t tmp_length = in VASNPRINTF() local
5159 if (maxlen < tmp_length) in VASNPRINTF()
5165 xsum (tmp_length, in VASNPRINTF()
5309 if (count >= tmp_length) in VASNPRINTF()