Lines Matching refs:expt
94 int expt; /* integer value of exponent */ in FUNCTION_NAME() local
365 dtoaresult = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
372 dtoaresult = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
379 if (expt == INT_MAX) ox[1] = '\0'; in FUNCTION_NAME()
402 dtoaresult = __ldtoa(&fparg.ldbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
409 dtoaresult = __dtoa(fparg.dbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
414 if (expt == 9999) expt = INT_MAX; in FUNCTION_NAME()
425 if (expt == INT_MAX) { /* inf or nan */ in FUNCTION_NAME()
438 if (expt > -4 && expt <= prec) { in FUNCTION_NAME()
442 prec -= expt; in FUNCTION_NAME()
444 prec = ndig - expt; in FUNCTION_NAME()
455 expsize = exponent(expstr, expt - 1, expchar); in FUNCTION_NAME()
460 if (expt > 0) in FUNCTION_NAME()
461 size = expt; in FUNCTION_NAME()
466 lead = expt; in FUNCTION_NAME()
682 if (expt <= 0) { in FUNCTION_NAME()
685 PAD(-expt, zeroes); in FUNCTION_NAME()
687 prec += expt; in FUNCTION_NAME()