Lines Matching refs:exp
43 * corresponding base two exponent is passed back in *exp.
46 * and *exp is set to zero. If arg is infinite or NaN, __infnanstring
47 * is called to place an appropriate string in buf, and *exp is set to
56 __aconvert(double arg, int ndigits, int *exp, int *sign, char *buf)
72 *exp = 0;
81 *exp = 0;
99 *exp = (ha >> 20) - 0x3ff - 1074;
101 *exp = (ha >> 20) - 0x3ff;
116 (*exp)++;
137 __qaconvert(long double *arg, int ndigits, int *exp, int *sign, char *buf)
153 *exp = 0;
162 *exp = 0;
185 *exp = -0x3ffe - i;
187 *exp = (ha >> 16) - 0x3fff;
255 (*exp)++;
294 __qaconvert(long double *arg, int ndigits, int *exp, int *sign, char *buf)
309 *exp = 0;
318 *exp = 0;
328 *exp = ea - 0x403f;
330 *exp = ea - 0x3fff;
346 (*exp)++;
367 __aconvert(double arg, int ndigits, int *exp, int *sign, char *buf)
383 __qaconvert(&ldarg, ndigits, exp, sign, buf);