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

  /external/deqp/framework/common/
tcuFloat.hpp 114 inline int exponent (void) const { return isDenorm() ? 1 - ExponentBias : (int)exponentBits() - ExponentBias; }
115 inline StorageType mantissa (void) const { return isZero() || isDenorm() ? mantissaBits() : (mantissaBits() | (StorageType(1)<<MantissaBits)); }
120 inline bool isDenorm (void) const { return exponentBits() == 0 && mantissaBits() != 0; }
tcuImageCompare.cpp 419 if (f.isDenorm())
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 131 return !fp16.isDenorm() && !fp16.isInf() && !fp16.isNaN();
136 return !fp32.isDenorm() && !fp32.isInf() && !fp32.isNaN();
  /external/deqp/modules/gles3/accuracy/
es3aVaryingInterpolationTests.cpp 133 return !fp16.isDenorm() && !fp16.isInf() && !fp16.isNaN();
138 return !fp32.isDenorm() && !fp32.isInf() && !fp32.isNaN();
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmGraphicsShaderTestUtil.cpp     [all...]
vktSpvAsmFloatControlsTests.cpp     [all...]
vktSpvAsmInstructionTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageLoadStoreTests.cpp 150 if (f.isDenorm() || f.isInf() || f.isNaN())
156 if (f.isDenorm() || f.isInf() || f.isNaN())
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderPackingFunctionTests.cpp 855 const deBool denorm = temp.isDenorm();
    [all...]
vktShaderCommonFunctionTests.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp     [all...]
es31fShaderImageLoadStoreTests.cpp     [all...]

Completed in 264 milliseconds