Lines Matching refs:expt
97 int expt; /* integer value of exponent */ in FUNCTION_NAME() local
357 dtoaresult = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
364 dtoaresult = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
371 if (expt == INT_MAX) ox[1] = '\0'; in FUNCTION_NAME()
394 dtoaresult = __ldtoa(&fparg.ldbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
401 dtoaresult = __dtoa(fparg.dbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
406 if (expt == 9999) expt = INT_MAX; in FUNCTION_NAME()
417 if (expt == INT_MAX) { /* inf or nan */ in FUNCTION_NAME()
430 if (expt > -4 && expt <= prec) { in FUNCTION_NAME()
434 prec -= expt; in FUNCTION_NAME()
436 prec = ndig - expt; in FUNCTION_NAME()
447 expsize = exponent(expstr, expt - 1, expchar); in FUNCTION_NAME()
452 if (expt > 0) in FUNCTION_NAME()
453 size = expt; in FUNCTION_NAME()
458 lead = expt; in FUNCTION_NAME()
660 if (expt <= 0) { in FUNCTION_NAME()
663 PAD(-expt, zeroes); in FUNCTION_NAME()
665 prec += expt; in FUNCTION_NAME()