Home
last modified time | relevance | path

Searched refs:mantissaWidth (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/libc/test/src/math/
DLdExpTest.h26 static constexpr UIntType mantissaWidth = variable
73 int32_t baseExponent = FPBits::exponentBias + mantissaWidth; in testUnderflowToZeroOnNormal()
85 int32_t baseExponent = FPBits::exponentBias + mantissaWidth; in testUnderflowToZeroOnSubnormal()
102 for (int32_t exp = 0; exp <= static_cast<int32_t>(mantissaWidth); ++exp) { in testNormalOperation()
127 result = func(x, -FPBits::maxExponent - int(mantissaWidth) - 5); in testNormalOperation()
/external/llvm-project/libc/utils/FPUtil/
DFloatProperties.h26 static constexpr uint32_t mantissaWidth = 23;
45 static constexpr uint32_t mantissaWidth = 52;
DFloatOperations.h48 int e = (bits >> Properties::mantissaWidth); // Shift out the mantissa. in getExponentFromBits()