Searched refs:DOUBLE_EXPONENT_BITS (Results 1 – 2 of 2) sorted by relevance
33 #define DOUBLE_EXPONENT_BITS 11 macro330 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()
42 #define DOUBLE_EXPONENT_BITS 11 macro456 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