Home
last modified time | relevance | path

Searched refs:elast (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
207 elast = er; in __big_decimal_to_string()
210 elast = 0; in __big_decimal_to_string()
214 if (efirst - elast >= DECIMAL_STRING_LENGTH - 1) { in __big_decimal_to_string()
216 elast = e - DECIMAL_STRING_LENGTH + 2; in __big_decimal_to_string()
217 if (er < elast) in __big_decimal_to_string()
218 er = elast; in __big_decimal_to_string()
224 elast = er = e - pm->ndigits + 1; in __big_decimal_to_string()
275 for (e = er - 1; e >= elast; e--) in __big_decimal_to_string()
278 pd->exponent = elast; in __big_decimal_to_string()