Searched refs:EXPONENT_MASK (Results 1 – 6 of 6) sorted by relevance
68 const EXPONENT_MASK: u64; constant176 self.to_bits() & Self::EXPONENT_MASK == 0 in is_denormal()187 let biased_e: i32 = ((bits & Self::EXPONENT_MASK) >> Self::MANTISSA_SIZE) as i32; in exponent()207 const EXPONENT_MASK: u64 = 0x7F800000; constant255 const EXPONENT_MASK: u64 = 0x7FF0000000000000; constant
61 return self.to_bits() & self.EXPONENT_MASK == 065 return self.to_bits() & self.EXPONENT_MASK == self.EXPONENT_MASK81 exp_bits = bits & self.EXPONENT_MASK99 EXPONENT_MASK = np.uint32(0x7F800000) variable in Float32113 EXPONENT_MASK = np.uint64(0x7FF0000000000000) variable in Float64
141 let mut float = F::from_bits(F::EXPONENT_MASK | (F::HIDDEN_BIT_MASK >> 1)); in parse_float()147 let mut float = F::from_bits(F::EXPONENT_MASK); in parse_float()153 let mut float = F::from_bits(F::EXPONENT_MASK); in parse_float()
10 for i in 0..=f32::EXPONENT_MASK { in main()
113 #define EXPONENT_MASK 0x7F800000 macro122 if ((t.i & EXPONENT_MASK) == EXPONENT_MASK) { in sanitizef()