Lines Matching refs:__e2
184 int32_t __e2; in __d2d() local
188 __e2 = 1 - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS - 2; in __d2d()
191 __e2 = static_cast<int32_t>(__ieeeExponent) - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS - 2; in __d2d()
210 if (__e2 >= 0) { in __d2d()
213 const uint32_t __q = __log10Pow2(__e2) - (__e2 > 3); in __d2d()
216 const int32_t __i = -__e2 + static_cast<int32_t>(__q) + __k; in __d2d()
237 const uint32_t __q = __log10Pow5(-__e2) - (-__e2 > 1); in __d2d()
238 __e10 = static_cast<int32_t>(__q) + __e2; in __d2d()
239 const int32_t __i = -__e2 - static_cast<int32_t>(__q); in __d2d()
674 …const int32_t __e2 = static_cast<int32_t>(__ieeeExponent) - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS; in __d2d_small_int() local
676 if (__e2 > 0) { in __d2d_small_int()
682 if (__e2 < -52) { in __d2d_small_int()
689 const uint64_t __mask = (1ull << -__e2) - 1; in __d2d_small_int()
698 __v->__mantissa = __m2 >> -__e2; in __d2d_small_int()