Lines Matching refs:expt
74 int expt; /* integer value of exponent */ in FUNCTION_NAME() local
334 dtoaresult = __hldtoa(fparg.ldbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
341 dtoaresult = __hdtoa(fparg.dbl, xdigs, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
348 if (expt == INT_MAX) ox[1] = '\0'; in FUNCTION_NAME()
375 dtoaresult = __ldtoa(&fparg.ldbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
382 dtoaresult = __dtoa(fparg.dbl, expchar ? 2 : 3, prec, &expt, &signflag, &dtoaend); in FUNCTION_NAME()
387 if (expt == 9999) expt = INT_MAX; in FUNCTION_NAME()
395 if (expt == INT_MAX) { /* inf or nan */ in FUNCTION_NAME()
407 if (expt > -4 && expt <= prec) { in FUNCTION_NAME()
411 prec -= expt; in FUNCTION_NAME()
413 prec = ndig - expt; in FUNCTION_NAME()
424 expsize = exponent(expstr, expt - 1, expchar); in FUNCTION_NAME()
429 if (expt > 0) in FUNCTION_NAME()
430 size = expt; in FUNCTION_NAME()
435 lead = expt; in FUNCTION_NAME()
624 if (expt <= 0) { in FUNCTION_NAME()
627 PAD(-expt, zeroes); in FUNCTION_NAME()
629 prec += expt; in FUNCTION_NAME()