Lines Matching refs:isInf
890 const bool isInf = !isNan && rnd.getFloat() > 0.4f; in getInputValues() local
891 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0; in getInputValues()
892 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu; in getInputValues()
896 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan); in getInputValues()
972 const bool isInf = rnd.getFloat() > 0.3f; in getInputValues() local
973 const bool isNan = !isInf && rnd.getFloat() > 0.4f; in getInputValues()
974 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0; in getInputValues()
975 const deUint32 exp = !isNan && !isInf ? (rnd.getUint32() & 0x7fu) : 0xffu; in getInputValues()
979 DE_ASSERT(tcu::Float32(value).isInf() == isInf && tcu::Float32(value).isNaN() == isNan); in getInputValues()
998 const bool ref = tcu::Float32(in0).isInf(); in compare()
1014 const bool ref = tcu::Float16(in0).isInf(); in compare()
1921 DE_ASSERT(!tcu::Float32(out).isInf() && !tcu::Float32(out).isDenorm()); in getInputValues()