Lines Matching refs:ref0
434 const float ref0 = de::abs(in0);
435 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0);
439 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
450 const int ref0 = de::abs(in0);
452 if (out0 != ref0)
454 m_failMsg << "Expected [" << compNdx << "] = " << ref0;
527 const float ref0 = in0 < 0.0f ? -1.0f :
529 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0);
533 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
544 const int ref0 = in0 < 0 ? -1 :
547 if (out0 != ref0)
549 m_failMsg << "Expected [" << compNdx << "] = " << ref0;
1307 const float ref0 = deFloatFloor(in0);
1309 const deUint32 ulpDiff0 = hasZeroSign ? getUlpDiff(out0, ref0) : getUlpDiffIgnoreZeroSign(out0, ref0);
1314 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " or " << HexFloat(ref1) << ", got ULP diff " << tcu::toHex(de::min(ulpDiff0, ulpDiff1));