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

/illumos-gate/usr/src/lib/libc/port/fp/
H A Ddecimal_bin.c149 _big_float d, b, *pbd, *pbb; local
232 pbb = &b;
233 __big_decimal_to_big_binary(pbd, sigbits + 2, &pbb, &sticky);
235 /* adjust pbb->bexponent based on the scale factor above */
236 pbb->bexponent -= powtwo;
240 for (i = pbb->blength - 1; i > 0 && ix < 5; i -= 2) {
241 px->significand[ix++] = (pbb->bsignificand[i] << 16) |
242 pbb->bsignificand[i - 1];
247 px->significand[ix++] = pbb->bsignificand[i] << 16;
252 while (i >= 0 && pbb
[all...]

Completed in 70 milliseconds