Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libc/port/fp/
H A Ddouble_decim.c179 int e, er, efirst, elast, i, is, j; in __big_decimal_to_string() local
206 efirst = (e >= 0)? e : -1; in __big_decimal_to_string()
209 efirst = (e >= er)? e : ((er > 0)? er - 1 : 0); in __big_decimal_to_string()
214 if (efirst - elast >= DECIMAL_STRING_LENGTH - 1) { in __big_decimal_to_string()
215 efirst = e; in __big_decimal_to_string()
223 efirst = e; in __big_decimal_to_string()
229 for (e = efirst; e >= pf->bexponent + (pf->blength << 2) && in __big_decimal_to_string()
310 for (i = efirst - er; i >= 0 && pd->ds[i] == '9'; i--) in __big_decimal_to_string()