Searched refs:__ieeeExponent (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/libcxx/src/ryu/ |
| H A D | f2s.cpp | 158 … inline __floating_decimal_32 __f2d(const uint32_t __ieeeMantissa, const uint32_t __ieeeExponent) { in __f2d() argument 161 if (__ieeeExponent == 0) { in __f2d() 166 __e2 = static_cast<int32_t>(__ieeeExponent) - __FLOAT_BIAS - __FLOAT_MANTISSA_BITS - 2; in __f2d() 176 const uint32_t __mmShift = __ieeeMantissa != 0 || __ieeeExponent <= 1; in __f2d() 422 chars_format _Fmt, const uint32_t __ieeeMantissa, const uint32_t __ieeeExponent) { in __to_chars() argument 546 const int32_t _Exponent2 = static_cast<int32_t>(__ieeeExponent) in __to_chars() 695 const uint32_t __ieeeExponent = __bits >> __FLOAT_MANTISSA_BITS; in __f2s_buffered_n() local 701 const int32_t _Exponent2 = static_cast<int32_t>(__ieeeExponent) in __f2s_buffered_n() 712 const __floating_decimal_32 __v = __f2d(__ieeeMantissa, __ieeeExponent); in __f2s_buffered_n() 713 return __to_chars(_First, _Last, __v, _Fmt, __ieeeMantissa, __ieeeExponent); in __f2s_buffered_n()
|
| H A D | d2s.cpp | 184 … inline __floating_decimal_64 __d2d(const uint64_t __ieeeMantissa, const uint32_t __ieeeExponent) { in __d2d() argument 187 if (__ieeeExponent == 0) { in __d2d() 192 __e2 = static_cast<int32_t>(__ieeeExponent) - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS - 2; in __d2d() 201 const uint32_t __mmShift = __ieeeMantissa != 0 || __ieeeExponent <= 1; in __d2d() 672 …_FROM_ABI inline bool __d2d_small_int(const uint64_t __ieeeMantissa, const uint32_t __ieeeExponent, in __d2d_small_int() argument 675 …const int32_t __e2 = static_cast<int32_t>(__ieeeExponent) - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS; in __d2d_small_int() 734 const uint32_t __ieeeExponent = static_cast<uint32_t>(__bits >> __DOUBLE_MANTISSA_BITS); in __d2s_buffered_n() local 738 const int32_t _Exponent2 = static_cast<int32_t>(__ieeeExponent) in __d2s_buffered_n() 760 const bool __isSmallInt = __d2d_small_int(__ieeeMantissa, __ieeeExponent, &__v); in __d2s_buffered_n() 776 __v = __d2d(__ieeeMantissa, __ieeeExponent); in __d2s_buffered_n()
|
| H A D | d2fixed.cpp | 262 const uint32_t __ieeeExponent = static_cast<uint32_t>(__bits >> __DOUBLE_MANTISSA_BITS); in __d2fixed_buffered_n() local 266 if (__ieeeExponent == 0) { in __d2fixed_buffered_n() 270 __e2 = static_cast<int32_t>(__ieeeExponent) - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS; in __d2fixed_buffered_n() 453 const uint32_t __ieeeExponent = static_cast<uint32_t>(__bits >> __DOUBLE_MANTISSA_BITS); in __d2exp_buffered_n() local 457 if (__ieeeExponent == 0) { in __d2exp_buffered_n() 461 __e2 = static_cast<int32_t>(__ieeeExponent) - __DOUBLE_BIAS - __DOUBLE_MANTISSA_BITS; in __d2exp_buffered_n()
|