Home | History | Annotate | Download | only in functional

Lines Matching refs:isInf

890 			const bool		isInf		= !isNan && rnd.getFloat() > 0.4f;
891 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0;
892 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu;
896 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan);
949 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "isinf", shaderType)
958 m_spec.source = "out0 = isinf(in0);";
972 const bool isInf = rnd.getFloat() > 0.3f;
973 const bool isNan = !isInf && rnd.getFloat() > 0.4f;
974 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0;
975 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu;
979 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan);
998 const bool ref = tcu::Float32(in0).isInf();
1014 const bool ref = tcu::Float16(in0).isInf();
1921 DE_ASSERT(!tcu::Float32(out).isInf() && !tcu::Float32(out).isDenorm());
2186 addFunctionCases<IsinfCase> (this, "isinf", true, false, false, NEW_SHADERS);