Searched refs:DOUBLE_EXPONENT_BITS (Results 1 – 2 of 2) sorted by relevance
49 #define DOUBLE_EXPONENT_BITS 11 macro373 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in __dtoa_engine()375 …_t ieeeExponent = (uint32_t) ((bits >> DOUBLE_MANTISSA_BITS) & ((1u << DOUBLE_EXPONENT_BITS) - 1)); in __dtoa_engine()388 if (ieeeExponent == ((1u << DOUBLE_EXPONENT_BITS) - 1u)) { in __dtoa_engine()
36 #define DOUBLE_EXPONENT_BITS 11 macro