• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/

Lines Matching refs:tmp_length

1508   size_t tmp_length;
1515 tmp_length =
1523 tmp_length =
1529 tmp_length =
1534 if (tmp_length < precision)
1535 tmp_length = precision;
1537 tmp_length = xsum (tmp_length, tmp_length);
1539 tmp_length = xsum (tmp_length, 1);
1545 tmp_length =
1553 tmp_length =
1559 tmp_length =
1564 if (tmp_length < precision)
1565 tmp_length = precision;
1567 tmp_length = xsum (tmp_length, 1);
1573 tmp_length =
1581 tmp_length =
1587 tmp_length =
1592 if (tmp_length < precision)
1593 tmp_length = precision;
1595 tmp_length = xsum (tmp_length, 2);
1600 tmp_length =
1608 tmp_length =
1615 tmp_length = xsum (tmp_length, precision);
1619 tmp_length =
1621 tmp_length = xsum (tmp_length, precision);
1626 tmp_length =
1632 tmp_length =
1637 if (tmp_length < precision)
1638 tmp_length = precision;
1640 tmp_length = xsum (tmp_length, 12);
1646 tmp_length = MB_CUR_MAX;
1649 tmp_length = 1;
1664 tmp_length = local_wcsnlen (arg, precision);
1666 tmp_length = local_wcslen (arg);
1699 tmp_length = local_strnlen (arg, precision);
1701 tmp_length = strlen (arg);
1707 tmp_length =
1724 > max (tmp_length, width)
1726 <= tmp_length + width. */
1727 tmp_length = xsum (tmp_length, width);
1730 if (tmp_length < width)
1731 tmp_length = width;
1735 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */
1737 return tmp_length;
2382 length (tmp_length), in the case when a precision is
2915 size_t tmp_length;
2985 tmp_length =
2991 tmp_length =
2996 if (tmp_length < precision)
2997 tmp_length = precision;
2999 tmp_length = xsum (tmp_length, 12);
3001 if (tmp_length < width)
3002 tmp_length = width;
3004 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */
3006 if (tmp_length <= sizeof (tmpbuf) / sizeof (DCHAR_T))
3010 size_t tmp_memsize = xtimes (tmp_length, sizeof (DCHAR_T));
3366 if (count >= tmp_length)
3367 /* tmp_length was incorrectly calculated - fix the
3422 size_t tmp_length;
3500 tmp_length = (type == TYPE_LONGDOUBLE ? LDBL_DIG + 1 : DBL_DIG + 1);
3502 tmp_length = (type == TYPE_LONGDOUBLE ? LDBL_DIG + 1 : 0);
3504 tmp_length = LDBL_DIG + 1;
3506 tmp_length = DBL_DIG + 1;
3508 tmp_length = 0;
3510 if (tmp_length < precision)
3511 tmp_length = precision;
3523 if (exponent >= 0 && tmp_length < exponent + precision)
3524 tmp_length = exponent + precision;
3539 if (exponent >= 0 && tmp_length < exponent + precision)
3540 tmp_length = exponent + precision;
3545 tmp_length = xsum (tmp_length, 12);
3547 if (tmp_length < width)
3548 tmp_length = width;
3550 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */
3552 if (tmp_length <= sizeof (tmpbuf) / sizeof (DCHAR_T))
3556 size_t tmp_memsize = xtimes (tmp_length, sizeof (DCHAR_T));
4552 if (count >= tmp_length)
4553 /* tmp_length was incorrectly calculated - fix the
4601 size_t tmp_length;
4713 tmp_length =
4718 if (tmp_length <= sizeof (tmpbuf) / sizeof (TCHAR_T))
4722 size_t tmp_memsize = xtimes (tmp_length, sizeof (TCHAR_T));
5114 size_t tmp_length =
5120 if (maxlen < tmp_length)
5126 xsum (tmp_length,
5270 if (count >= tmp_length)
5271 /* tmp_length was incorrectly calculated - fix the