Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libc/port/fp/
H A Dchar_to_decimal.h105 int nfast, nfastlimit; variable
395 for (nfast = 0, pfast = &(pd->ds[ids]);
396 nfast < nfastlimit && NZDIGIT(current);
397 nfast++) {
401 ids += nfast;
525 for (nfast = 0, pfast = &(pd->ds[ids]);
526 nfast < nfastlimit && NZDIGIT(current);
527 nfast++) {
531 ids += nfast;
532 pd->exponent -= nfast << expshift;
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwstod.c196 int nfast, nfastlimit; in wstring_to_decimal() local
402 for (nfast = 0, pfast = &(pd->ds[ids]); in wstring_to_decimal()
403 nfast < nfastlimit && NZDIGIT(current); in wstring_to_decimal()
404 nfast++) { in wstring_to_decimal()
408 ids += nfast; in wstring_to_decimal()
495 for (nfast = 0, pfast = &(pd->ds[ids]); in wstring_to_decimal()
496 nfast < nfastlimit && NZDIGIT(current); in wstring_to_decimal()
497 nfast++) { in wstring_to_decimal()
501 ids += nfast; in wstring_to_decimal()
502 pd->exponent -= nfast << expshift; in wstring_to_decimal()