Home
last modified time | relevance | path

Searched refs:EXPONENT_BIAS (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/serde_json/src/lexical/
Dnum.rs227 const EXPONENT_BIAS: i32; constant
280 biased_e as i32 - Self::EXPONENT_BIAS in exponent()
326 const EXPONENT_BIAS: i32 = 127 + Self::MANTISSA_SIZE; constant
327 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; constant
391 const DENORMAL_EXPONENT: i32 = 1 - Self::EXPONENT_BIAS;
392 const MAX_EXPONENT: i32 = 0x7FF - Self::EXPONENT_BIAS;
Derrors.rs69 let bias = -(F::EXPONENT_BIAS - F::MANTISSA_SIZE); in error_is_accurate()
Dfloat.rs177 exp = (fp.exp + F::EXPONENT_BIAS) as u64; in into_float()
/external/guava/android/guava/src/com/google/common/math/
DDoubleUtils.java57 static final int EXPONENT_BIAS = 1023; field in DoubleUtils
119 long bits = (long) (exponent + EXPONENT_BIAS) << SIGNIFICAND_BITS; in bigToDouble()
/external/guava/guava/src/com/google/common/math/
DDoubleUtils.java57 static final int EXPONENT_BIAS = 1023; field in DoubleUtils
119 long bits = (long) (exponent + EXPONENT_BIAS) << SIGNIFICAND_BITS; in bigToDouble()
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderFConvertTests.cpp75 int exponent = rnd.getInt(1 - T::EXPONENT_BIAS, T::EXPONENT_BIAS + 1); in getRandomNormal()
DvktShaderCommonFunctionTests.cpp646 …uble ? static_cast<deUint64>(tcu::Float64::EXPONENT_BIAS) : static_cast<deUint64>(tcu::Float32::EX… in infNanRandomFloats()
/external/deqp/framework/common/
DtcuFloat.hpp64 EXPONENT_BIAS = ExponentBias, enumerator
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmFloatControlsTests.cpp2702 DE_ASSERT(returnedFloat.EXPONENT_BIAS == 15); in compareBytes()
2708 DE_ASSERT(returnedFloat.EXPONENT_BIAS == 15); in compareBytes()