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