Lines Matching refs:ulpDiff0
510 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0);
512 if (ulpDiff0 > maxUlpDiff)
514 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
604 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0);
606 if (ulpDiff0 > maxUlpDiff)
608 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
1389 const deUint32 ulpDiff0 = hasZeroSign ? getUlpDiff(out0, ref0) : getUlpDiffIgnoreZeroSign(out0, ref0);
1392 if (ulpDiff0 > 0 && ulpDiff1 > 0)
1394 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " or " << HexFloat(ref1) << ", got ULP diff " << tcu::toHex(de::min(ulpDiff0, ulpDiff1));
1774 const deUint32 ulpDiff0 = signedZero ? getUlpDiff(out0, refOut0) : getUlpDiffIgnoreZeroSign(out0, refOut0);
1776 if (ulpDiff0 > maxUlpDiff || out1 != refOut1)
1779 << tcu::toHex(maxUlpDiff) << ", got ULP diff " << tcu::toHex(ulpDiff0);