Searched refs:econvert (Results 1 – 2 of 2) sorted by relevance
572 char econvert[20]; in fmtfp() local724 econvert[eplace++] = "0123456789"[tmpexp % 10]; in fmtfp()726 } while (tmpexp > 0 && eplace < (int)sizeof(econvert)); in fmtfp()734 econvert[eplace++] = '0'; in fmtfp()816 econvert[--eplace])) in fmtfp()
1102 char econvert[4]; /* "e-12" (without nul-termination). */ in fmtflt() local 1271 * Convert the exponent. The sizeof(econvert) is 4. So, the in fmtflt() 1272 * econvert buffer can hold e.g. "e+99" and "e-99". We don't in fmtflt() 1276 epos = convert(exponent, econvert, 2, 10, 0); in fmtflt() 1283 econvert[epos++] = '0'; in fmtflt() 1284 econvert[epos++] = esign; in fmtflt() 1285 econvert[epos++] = (flags & PRINT_F_UP) ? 'E' : 'e'; in fmtflt() 1372 OUTCHAR(str, *len, size, econvert[epos]); in fmtflt()