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

  /external/deqp/framework/common/
tcuFloat.hpp 117 inline bool isInf (void) const { return exponentBits() == ((1<<ExponentBits)-1) && mantissaBits() == 0; }
250 else if (other.isInf())
  /external/valgrind/main/VEX/useful/
fp_80_64.c 246 Bool isInf;
272 isInf = toBool(
278 if (isInf) {
  /external/valgrind/main/VEX/priv/
guest_generic_x87.c 248 Bool isInf;
274 isInf = toBool(
280 if (isInf) {
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 812 const bool isInf = !isNan && rnd.getFloat() > 0.4f;
813 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0;
814 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu;
818 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan);
869 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "isinf", shaderType)
878 m_spec.source = "out0 = isinf(in0);";
892 const bool isInf = rnd.getFloat() > 0.3f;
893 const bool isNan = !isInf && rnd.getFloat() > 0.4f;
894 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 843 const bool isInf = !isNan && rnd.getFloat() > 0.4f;
844 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0;
845 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu;
849 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan);
902 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "isinf", shaderType)
911 m_spec.source = "out0 = isinf(in0);";
925 const bool isInf = rnd.getFloat() > 0.3f;
926 const bool isNan = !isInf && rnd.getFloat() > 0.4f;
927 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0
    [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp 789 bool isInf = CFP->getValueAPF().isInfinity();
791 if (!isHalf && !isInf && !isNaN) {
    [all...]

Completed in 244 milliseconds