• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-runtime/libasprintf/

Lines Matching refs:tmp_length

2061 		size_t tmp_length;
2131 tmp_length =
2137 tmp_length =
2142 if (tmp_length < precision)
2143 tmp_length = precision;
2145 tmp_length = xsum (tmp_length, 12);
2147 if (tmp_length < width)
2148 tmp_length = width;
2150 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */
2152 if (tmp_length <= sizeof (tmpbuf) / sizeof (DCHAR_T))
2156 size_t tmp_memsize = xtimes (tmp_length, sizeof (DCHAR_T));
2512 if (count >= tmp_length)
2513 /* tmp_length was incorrectly calculated - fix the
2566 size_t tmp_length;
2642 tmp_length = (type == TYPE_LONGDOUBLE ? LDBL_DIG + 1 : DBL_DIG + 1);
2644 tmp_length = (type == TYPE_LONGDOUBLE ? LDBL_DIG + 1 : 0);
2646 tmp_length = LDBL_DIG + 1;
2648 tmp_length = DBL_DIG + 1;
2650 tmp_length = 0;
2652 if (tmp_length < precision)
2653 tmp_length = precision;
2665 if (exponent >= 0 && tmp_length < exponent + precision)
2666 tmp_length = exponent + precision;
2681 if (exponent >= 0 && tmp_length < exponent + precision)
2682 tmp_length = exponent + precision;
2687 tmp_length = xsum (tmp_length, 12);
2689 if (tmp_length < width)
2690 tmp_length = width;
2692 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */
2694 if (tmp_length <= sizeof (tmpbuf) / sizeof (DCHAR_T))
2698 size_t tmp_memsize = xtimes (tmp_length, sizeof (DCHAR_T));
3542 if (count >= tmp_length)
3543 /* tmp_length was incorrectly calculated - fix the
3589 size_t tmp_length;
3670 tmp_length =
3678 tmp_length =
3684 tmp_length =
3689 if (tmp_length < precision)
3690 tmp_length = precision;
3692 tmp_length = xsum (tmp_length, tmp_length);
3694 tmp_length = xsum (tmp_length, 1);
3700 tmp_length =
3708 tmp_length =
3714 tmp_length =
3719 if (tmp_length < precision)
3720 tmp_length = precision;
3722 tmp_length = xsum (tmp_length, 1);
3728 tmp_length =
3736 tmp_length =
3742 tmp_length =
3747 if (tmp_length < precision)
3748 tmp_length = precision;
3750 tmp_length = xsum (tmp_length, 2);
3755 tmp_length =
3763 tmp_length =
3770 tmp_length = xsum (tmp_length, precision);
3774 tmp_length =
3776 tmp_length = xsum (tmp_length, precision);
3781 tmp_length =
3787 tmp_length =
3792 if (tmp_length < precision)
3793 tmp_length = precision;
3795 tmp_length = xsum (tmp_length, 12);
3801 tmp_length = MB_CUR_MAX;
3804 tmp_length = 1;
3811 tmp_length =
3815 tmp_length = xtimes (tmp_length, MB_CUR_MAX);
3820 tmp_length = strlen (a.arg[dp->arg_index].a.a_string);
3824 tmp_length =
3839 > max (tmp_length, width)
3841 <= tmp_length + width. */
3842 tmp_length = xsum (tmp_length, width);
3845 if (tmp_length < width)
3846 tmp_length = width;
3849 tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */
3852 if (tmp_length <= sizeof (tmpbuf) / sizeof (TCHAR_T))
3856 size_t tmp_memsize = xtimes (tmp_length, sizeof (TCHAR_T));
4379 if (count >= tmp_length)
4380 /* tmp_length was incorrectly calculated - fix the
4583 if (count >= tmp_length)
4584 /* tmp_length was incorrectly calculated - fix the