Home
last modified time | relevance | path

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

/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf_fp.c169 int to_shift = 0; in __printf_fp() local
364 to_shift = 1 + fracsize * BITS_PER_MP_LIMB - LDBL_MANT_DIG; in __printf_fp()
407 to_shift = 1 + fracsize * BITS_PER_MP_LIMB - DBL_MANT_DIG; in __printf_fp()
463 if ((exponent + to_shift) % BITS_PER_MP_LIMB == 0) in __printf_fp()
465 MPN_COPY_DECR (frac + (exponent + to_shift) / BITS_PER_MP_LIMB, in __printf_fp()
467 fracsize += (exponent + to_shift) / BITS_PER_MP_LIMB; in __printf_fp()
471 cy = __mpn_lshift (frac + (exponent + to_shift) / BITS_PER_MP_LIMB, in __printf_fp()
473 (exponent + to_shift) % BITS_PER_MP_LIMB); in __printf_fp()
474 fracsize += (exponent + to_shift) / BITS_PER_MP_LIMB; in __printf_fp()
478 MPN_ZERO (frac, (exponent + to_shift) / BITS_PER_MP_LIMB); in __printf_fp()
[all …]