Searched refs:EXPONENT_BIAS (Results 1 – 9 of 9) sorted by relevance
227 const EXPONENT_BIAS: i32; constant280 biased_e as i32 - Self::EXPONENT_BIAS in exponent()326 const EXPONENT_BIAS: i32 = 127 + Self::MANTISSA_SIZE; constant327 const DENORMAL_EXPONENT: i32 = 1 - Self::EXPONENT_BIAS;328 const MAX_EXPONENT: i32 = 0xFF - Self::EXPONENT_BIAS;390 const EXPONENT_BIAS: i32 = 1023 + Self::MANTISSA_SIZE; constant391 const DENORMAL_EXPONENT: i32 = 1 - Self::EXPONENT_BIAS;392 const MAX_EXPONENT: i32 = 0x7FF - Self::EXPONENT_BIAS;
69 let bias = -(F::EXPONENT_BIAS - F::MANTISSA_SIZE); in error_is_accurate()
177 exp = (fp.exp + F::EXPONENT_BIAS) as u64; in into_float()
57 static final int EXPONENT_BIAS = 1023; field in DoubleUtils119 long bits = (long) (exponent + EXPONENT_BIAS) << SIGNIFICAND_BITS; in bigToDouble()
75 int exponent = rnd.getInt(1 - T::EXPONENT_BIAS, T::EXPONENT_BIAS + 1); in getRandomNormal()
646 …uble ? static_cast<deUint64>(tcu::Float64::EXPONENT_BIAS) : static_cast<deUint64>(tcu::Float32::EX… in infNanRandomFloats()
64 EXPONENT_BIAS = ExponentBias, enumerator
2702 DE_ASSERT(returnedFloat.EXPONENT_BIAS == 15); in compareBytes()2708 DE_ASSERT(returnedFloat.EXPONENT_BIAS == 15); in compareBytes()