Home
last modified time | relevance | path

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

/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ryu/
A Dd2fixed.c33 #define DOUBLE_EXPONENT_BITS 11 macro
330 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in d2fixed_buffered_n()
332 …_t ieeeExponent = (uint32_t) ((bits >> DOUBLE_MANTISSA_BITS) & ((1u << DOUBLE_EXPONENT_BITS) - 1)); in d2fixed_buffered_n()
335 if (ieeeExponent == ((1u << DOUBLE_EXPONENT_BITS) - 1u)) { in d2fixed_buffered_n()
516 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in d2exp_buffered_n()
518 …_t ieeeExponent = (uint32_t) ((bits >> DOUBLE_MANTISSA_BITS) & ((1u << DOUBLE_EXPONENT_BITS) - 1)); in d2exp_buffered_n()
521 if (ieeeExponent == ((1u << DOUBLE_EXPONENT_BITS) - 1u)) { in d2exp_buffered_n()
A Dd2s.c42 #define DOUBLE_EXPONENT_BITS 11 macro
456 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in floating_to_fd64()
458 …_t ieeeExponent = (uint32_t) ((bits >> DOUBLE_MANTISSA_BITS) & ((1u << DOUBLE_EXPONENT_BITS) - 1)); in floating_to_fd64()
460 …if (ieeeExponent == ((1u << DOUBLE_EXPONENT_BITS) - 1u) || (ieeeExponent == 0 && ieeeMantissa == 0… in floating_to_fd64()

Completed in 6 milliseconds