Searched refs:EXPONENT_MASK (Results 1 – 4 of 4) sorted by relevance
212 const EXPONENT_MASK: Self::Unsigned; constant256 self.to_bits() & Self::EXPONENT_MASK == Self::Unsigned::ZERO in is_denormal()262 self.to_bits() & Self::EXPONENT_MASK == Self::EXPONENT_MASK in is_special()279 let biased_e = ((bits & Self::EXPONENT_MASK) >> Self::MANTISSA_SIZE).as_u32(); in exponent()320 const EXPONENT_MASK: u32 = 0x7F800000; constant384 const EXPONENT_MASK: u64 = 0x7FF0000000000000; constant
49 static final long EXPONENT_MASK = 0x7ff0000000000000L; field in DoubleUtils
43 private static final long EXPONENT_MASK = 0x7ff0000000000000L; field in S262 return (int) ((EXPONENT_MASK & bits) >> EXPONENT_SHIFT) - 1022; in exp()