HomeSort by relevance Sort by last modified time
    Searched refs:exponentBits (Results 1 - 6 of 6) sorted by null

  /external/deqp/framework/common/
tcuFloat.hpp 47 template <typename StorageType_, int ExponentBits, int MantissaBits, int ExponentBias, deUint32 Flags>
55 EXPONENT_BITS = ExponentBits,
69 static inline Float convert (const Float<StorageType, ExponentBits, MantissaBits, ExponentBias, Flags>& src) { return src; }
109 inline int signBit (void) const { return (int)(m_value >> (ExponentBits+MantissaBits)) & 1; }
110 inline StorageType exponentBits (void) const { return (m_value >> MantissaBits) & ((StorageType(1)<<ExponentBits)-1); }
114 inline int exponent (void) const { return isDenorm() ? 1 - ExponentBias : (int)exponentBits() - ExponentBias; }
117 inline bool isInf (void) const { return exponentBits() == ((1<<ExponentBits)-1) && mantissaBits() == 0; }
118 inline bool isNaN (void) const { return exponentBits() == ((1<<ExponentBits)-1) && mantissaBits() != 0;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
fp_lib.h 229 #define exponentBits (typeWidth - significandBits - 1)
230 #define maxExponent ((1 << exponentBits) - 1)
235 #define signBit (REP_C(1) << (significandBits + exponentBits))
  /external/compiler-rt/lib/builtins/
fp_lib.h 217 #define exponentBits (typeWidth - significandBits - 1)
218 #define maxExponent ((1 << exponentBits) - 1)
223 #define signBit (REP_C(1) << (significandBits + exponentBits))
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmWorkgroupMemoryTests.cpp 115 const deUint64 exponentBits = 0x7ff0000000000000;
117 return ((f & exponentBits) == exponentBits && (f & mantissaBits) != 0);
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderDerivateTests.cpp 177 return tcu::UVec4(tcu::Float32(v[0]).exponentBits(),
178 tcu::Float32(v[1]).exponentBits(),
179 tcu::Float32(v[2]).exponentBits(),
180 tcu::Float32(v[3]).exponentBits());
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderDerivateTests.cpp 207 return tcu::UVec4(tcu::Float32(v[0]).exponentBits(),
208 tcu::Float32(v[1]).exponentBits(),
209 tcu::Float32(v[2]).exponentBits(),
210 tcu::Float32(v[3]).exponentBits());
    [all...]

Completed in 490 milliseconds