Lines Matching refs:__e2

264   int32_t __e2;  in __d2fixed_buffered_n()  local
267 __e2 = 1 - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS; in __d2fixed_buffered_n()
270 __e2 = static_cast<int32_t>(__ieeeExponent) - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS; in __d2fixed_buffered_n()
275 if (__e2 >= -52) { in __d2fixed_buffered_n()
276 const uint32_t __idx = __e2 < 0 ? 0 : __indexForExponent(static_cast<uint32_t>(__e2)); in __d2fixed_buffered_n()
280 const uint32_t __j = __p10bits - __e2; in __d2fixed_buffered_n()
314 if (__e2 < 0) { in __d2fixed_buffered_n()
315 const int32_t __idx = -__e2 / 16; in __d2fixed_buffered_n()
336 const int32_t __j = __ADDITIONAL_BITS_2 + (-__e2 - 16 * __idx); in __d2fixed_buffered_n()
369 const int32_t __requiredTwos = -__e2 - static_cast<int32_t>(__precision) - 1; in __d2fixed_buffered_n()
455 int32_t __e2; in __d2exp_buffered_n() local
458 __e2 = 1 - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS; in __d2exp_buffered_n()
461 __e2 = static_cast<int32_t>(__ieeeExponent) - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS; in __d2exp_buffered_n()
471 if (__e2 >= -52) { in __d2exp_buffered_n()
472 const uint32_t __idx = __e2 < 0 ? 0 : __indexForExponent(static_cast<uint32_t>(__e2)); in __d2exp_buffered_n()
476 const uint32_t __j = __p10bits - __e2; in __d2exp_buffered_n()
516 if (__e2 < 0 && __availableDigits == 0) { in __d2exp_buffered_n()
517 const int32_t __idx = -__e2 / 16; in __d2exp_buffered_n()
519 const int32_t __j = __ADDITIONAL_BITS_2 + (-__e2 - 16 * __idx); in __d2exp_buffered_n()
578 const int32_t __requiredTwos = -__e2 - __rexp; in __d2exp_buffered_n()