Home | History | Annotate | Download | only in functional

Lines Matching refs:isInf

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;
928 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu;
932 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan);
951 const bool ref = tcu::Float32(in0).isInf();
967 isInf();
1863 DE_ASSERT(!tcu::Float32(out).isInf() && !tcu::Float32(out).isDenorm());
2135 addFunctionCases<IsinfCase> (this, "isinf", true, false, false, NEW_SHADERS);