Lines Matching refs:refOut0
801 const float refOut0 = in0 - refOut1;
803 const int bitsLost = precision != glu::PRECISION_HIGHP ? numBitsLostInOp(in0, refOut0) : 0;
812 m_failMsg << "Expected [" << compNdx << "] = (" << HexFloat(refOut0) << ") + (" << HexFloat(refOut1) << ") = " << HexFloat(in0) << " with ULP threshold "
1034 const deUint32 refOut0 = tcu::Float32(in0).bits();
1035 const int ulpDiff = de::abs((int)out0 - (int)refOut0);
1039 m_failMsg << "Expected [" << compNdx << "] = " << tcu::toHex(refOut0) << " with threshold "
1769 float refOut0;
1772 frexp(in0, &refOut0, &refOut1);
1774 const deUint32 ulpDiff0 = signedZero ? getUlpDiff(out0, refOut0) : getUlpDiffIgnoreZeroSign(out0, refOut0);
1778 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(refOut0) << ", " << refOut1 << " with ULP threshold "
1907 const float refOut0 = ldexp(in0, in1);
1908 const deUint32 ulpDiff = getUlpDiffIgnoreZeroSign(out0, refOut0);
1914 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(refOut0) << ", (exp = " << inExp << ") with ULP threshold "