Searched defs:nfast (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dchar_to_decimal.h43 int nfast, nfastlimit; variable
237 nfast = 0;
240 pfast[nfast++] = CURRENT;
243 while (('1' <= CURRENT) && (CURRENT <= '9') && (nfast < nfastlimit));
244 ids += nfast;
362 nfast = 0;
365 pfast[nfast++] = CURRENT;
368 while (('1' <= CURRENT) && (CURRENT <= '9') && (nfast < nfastlimit));
372 ids += nfast;
373 pd->exponent -= nfast;
[all...]
/illumos-gate/usr/src/lib/libc/port/fp/
H A Dchar_to_decimal.h107 int nfast, nfastlimit; variable
397 for (nfast = 0, pfast = &(pd->ds[ids]);
398 nfast < nfastlimit && NZDIGIT(current);
399 nfast++) {
403 ids += nfast;
527 for (nfast = 0, pfast = &(pd->ds[ids]);
528 nfast < nfastlimit && NZDIGIT(current);
529 nfast++) {
533 ids += nfast;
534 pd->exponent -= nfast << expshif
[all...]
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dwstod.c198 int nfast, nfastlimit; local
404 for (nfast = 0, pfast = &(pd->ds[ids]);
405 nfast < nfastlimit && NZDIGIT(current);
406 nfast++) {
410 ids += nfast;
497 for (nfast = 0, pfast = &(pd->ds[ids]);
498 nfast < nfastlimit && NZDIGIT(current);
499 nfast++) {
503 ids += nfast;
504 pd->exponent -= nfast << expshif
[all...]

Completed in 45 milliseconds