Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libbc/libc/gen/common/
H A Dchar_to_decimal.h40 int nzbp = 0, nzap = 0; /* Length of zero substring variable
216 if ((ids + nzbp + 2) >= DECIMAL_STRING_LENGTH) { /* Not enough room to
219 pd->exponent += nzbp + 1;
226 for (i = 0; (i < nzbp); i++)
232 nzbp = 0;
272 nzbp--; /* Undo effect of
277 nzbp++;
290 pd->exponent += nzbp;
307 pd->exponent += nzbp;
339 if ((ids + nzbp + nzap + 2) >= DECIMAL_STRING_LENGTH) { /* Not enough room to
[all …]
/titanic_41/usr/src/lib/libc/port/fp/
H A Dchar_to_decimal.h104 int nzbp = 0; /* number of zeros before point */ variable
373 if (ids + nzbp + 2 < DECIMAL_STRING_LENGTH) {
374 for (i = 0; i < nzbp; i++)
378 pd->exponent += (nzbp + 1) << expshift;
389 nzbp = 0;
436 nzbp++;
502 if (ids + nzbp + nzap + 2 < DECIMAL_STRING_LENGTH) {
503 for (i = 0; i < nzbp + nzap; i++)
508 pd->exponent += nzbp << expshift;
518 nzbp = 0;
[all …]
/titanic_41/usr/src/lib/libc/port/i18n/
H A Dwstod.c195 int nzbp = 0; /* number of zeros before point */ in wstring_to_decimal() local
380 if (ids + nzbp + 2 < DECIMAL_STRING_LENGTH) { in wstring_to_decimal()
381 for (i = 0; i < nzbp; i++) in wstring_to_decimal()
385 pd->exponent += (nzbp + 1) << expshift; in wstring_to_decimal()
396 nzbp = 0; in wstring_to_decimal()
426 nzbp++; in wstring_to_decimal()
472 if (ids + nzbp + nzap + 2 < DECIMAL_STRING_LENGTH) { in wstring_to_decimal()
473 for (i = 0; i < nzbp + nzap; i++) in wstring_to_decimal()
478 pd->exponent += nzbp << expshift; in wstring_to_decimal()
488 nzbp = 0; in wstring_to_decimal()
[all …]