Home | History | Annotate | Download | only in functional

Lines Matching refs:ulpDiff0

472 				const deUint32	ulpDiff0	= getUlpDiff(out0, ref0);
474 if (ulpDiff0 > maxUlpDiff)
476 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
566 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0);
568 if (ulpDiff0 > maxUlpDiff)
570 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
1346 const deUint32 ulpDiff0 = hasZeroSign ? getUlpDiff(out0, ref0) : getUlpDiffIgnoreZeroSign(out0, ref0);
1349 if (ulpDiff0 > 0 && ulpDiff1 > 0)
1351 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " or " << HexFloat(ref1) << ", got ULP diff " << tcu::toHex(de::min(ulpDiff0, ulpDiff1));