Home | History | Annotate | Download | only in functional

Lines Matching refs:isInf

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;
895 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu;
899 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan);
918 const deUint32 ref = tcu::Float32(in0).isInf() ? 1u : 0u;
1685 addFunctionCases<IsinfCase> (this, "isinf", true, false, false);