Home | History | Annotate | Download | only in lib

Lines Matching refs:tmp_length

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