Searched refs:DOUBLE_EXPONENT_BITS (Results 1 – 2 of 2) sorted by relevance
36 #define DOUBLE_EXPONENT_BITS 11 macro135 …uint64_t ieee = (((uint64_t) signedM) << (DOUBLE_EXPONENT_BITS + DOUBLE_MANTISSA_BITS)) | (0x7fful… in __atod_engine()170 …uint64_t ieee = (((((uint64_t) signedM) << DOUBLE_EXPONENT_BITS) | (uint64_t)ieee_e2) << DOUBLE_MA… in __atod_engine()
49 #define DOUBLE_EXPONENT_BITS 11 macro378 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in __dtoa_engine()380 …_t ieeeExponent = (uint32_t) ((bits >> DOUBLE_MANTISSA_BITS) & ((1u << DOUBLE_EXPONENT_BITS) - 1)); in __dtoa_engine()393 if (ieeeExponent == ((1u << DOUBLE_EXPONENT_BITS) - 1u)) { in __dtoa_engine()