Lines Matching refs:ref0
509 const float ref0 = de::abs(in0);
510 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0);
514 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
525 const int ref0 = de::abs(in0);
527 if (out0 != ref0)
529 m_failMsg << "Expected [" << compNdx << "] = " << ref0;
602 const float ref0 = in0 < 0.0f ? -1.0f :
604 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0);
608 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
619 const int ref0 = in0 < 0 ? -1 :
622 if (out0 != ref0)
624 m_failMsg << "Expected [" << compNdx << "] = " << ref0;
1387 const float ref0 = deFloatFloor(in0);
1389 const deUint32 ulpDiff0 = hasZeroSign ? getUlpDiff(out0, ref0) : getUlpDiffIgnoreZeroSign(out0, ref0);
1394 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " or " << HexFloat(ref1) << ", got ULP diff " << tcu::toHex(de::min(ulpDiff0, ulpDiff1));