Lines Matching refs:expt
74 int expt; /* integer value of exponent */ in FUNCTION_NAME() local
356 dtoaresult = cp = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
363 dtoaresult = cp = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
370 if (expt == INT_MAX) ox[1] = '\0'; in FUNCTION_NAME()
393 dtoaresult = cp = __ldtoa(&fparg.ldbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
400 dtoaresult = cp = __dtoa(fparg.dbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
405 if (expt == 9999) expt = INT_MAX; in FUNCTION_NAME()
409 if (expt == INT_MAX) { /* inf or nan */ in FUNCTION_NAME()
422 if (expt > -4 && expt <= prec) { in FUNCTION_NAME()
426 prec -= expt; in FUNCTION_NAME()
428 prec = ndig - expt; in FUNCTION_NAME()
439 expsize = exponent(expstr, expt - 1, expchar); in FUNCTION_NAME()
444 if (expt > 0) in FUNCTION_NAME()
445 size = expt; in FUNCTION_NAME()
450 lead = expt; in FUNCTION_NAME()
635 if (expt <= 0) { in FUNCTION_NAME()
638 PAD(-expt, zeroes); in FUNCTION_NAME()
640 prec += expt; in FUNCTION_NAME()