Lines Matching refs:refOut0
794 const float refOut0 = in0 - refOut1;
796 const int bitsLost = precision != glu::PRECISION_HIGHP ? numBitsLostInOp(in0, refOut0) : 0;
805 m_failMsg << "Expected [" << compNdx << "] = (" << HexFloat(refOut0) << ") + (" << HexFloat(refOut1) << ") = " << HexFloat(in0) << " with ULP threshold "
1027 const deUint32 refOut0 = tcu::Float32(in0).bits();
1028 const int ulpDiff = de::abs((int)out0 - (int)refOut0);
1032 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(refOut0) << " with threshold "
1751 float refOut0;
1754 frexp(in0, &refOut0, &refOut1);
1756 const deUint32 ulpDiff0 = signedZero ? getUlpDiff(out0, refOut0) : getUlpDiffIgnoreZeroSign(out0, refOut0);
1760 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(refOut0) << ", " << refOut1 << " with ULP threshold "
1889 const float refOut0 = ldexp(in0, in1);
1890 const deUint32 ulpDiff = getUlpDiffIgnoreZeroSign(out0, refOut0);
1896 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(refOut0) << ", (exp = " << inExp << ") with ULP threshold "