Home
last modified time | relevance | path

Searched refs:econvert (Results 1 – 2 of 2) sorted by relevance

/freebsd/crypto/openssl/crypto/bio/
H A Dbio_print.c572 char econvert[20]; in fmtfp() local
723 econvert[eplace++] = "0123456789"[tmpexp % 10]; in fmtfp()
725 } while (tmpexp > 0 && eplace < (int)sizeof(econvert)); in fmtfp()
733 econvert[eplace++] = '0'; in fmtfp()
815 econvert[--eplace])) in fmtfp()
/freebsd/contrib/ntp/libntp/
H A Dsnprintf.c1102 char econvert[4]; /* "e-12" (without nul-termination). */ in fmtflt() local
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()