Searched refs:DOUBLE_MANTISSA_BITS (Results 1 – 2 of 2) sorted by relevance
41 #define DOUBLE_MANTISSA_BITS 52 macro84 e2 = 1 - DOUBLE_BIAS - DOUBLE_MANTISSA_BITS - 2; in d2d()87 e2 = (int32_t) ieeeExponent - DOUBLE_BIAS - DOUBLE_MANTISSA_BITS - 2; in d2d()88 m2 = (1ull << DOUBLE_MANTISSA_BITS) | ieeeMantissa; in d2d()412 const uint64_t m2 = (1ull << DOUBLE_MANTISSA_BITS) | ieeeMantissa; in d2d_small_int()413 const int32_t e2 = (int32_t) ieeeExponent - DOUBLE_BIAS - DOUBLE_MANTISSA_BITS; in d2d_small_int()456 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in floating_to_fd64()457 const uint64_t ieeeMantissa = bits & ((1ull << DOUBLE_MANTISSA_BITS) - 1); in floating_to_fd64()458 …const uint32_t ieeeExponent = (uint32_t) ((bits >> DOUBLE_MANTISSA_BITS) & ((1u << DOUBLE_EXPONENT… in floating_to_fd64()
32 #define DOUBLE_MANTISSA_BITS 52 macro330 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in d2fixed_buffered_n()331 const uint64_t ieeeMantissa = bits & ((1ull << DOUBLE_MANTISSA_BITS) - 1); in d2fixed_buffered_n()345 e2 = 1 - DOUBLE_BIAS - DOUBLE_MANTISSA_BITS; in d2fixed_buffered_n()348 e2 = (int32_t) ieeeExponent - DOUBLE_BIAS - DOUBLE_MANTISSA_BITS; in d2fixed_buffered_n()349 m2 = (1ull << DOUBLE_MANTISSA_BITS) | ieeeMantissa; in d2fixed_buffered_n()516 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in d2exp_buffered_n()517 const uint64_t ieeeMantissa = bits & ((1ull << DOUBLE_MANTISSA_BITS) - 1); in d2exp_buffered_n()531 e2 = 1 - DOUBLE_BIAS - DOUBLE_MANTISSA_BITS; in d2exp_buffered_n()534 e2 = (int32_t) ieeeExponent - DOUBLE_BIAS - DOUBLE_MANTISSA_BITS; in d2exp_buffered_n()[all …]
Completed in 6 milliseconds