Home | History | Annotate | Download | only in functional

Lines Matching refs:ref0

502 				const float		ref0		= de::abs(in0);
503 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0);
507 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
518 const int ref0 = de::abs(in0);
520 if (out0 != ref0)
522 m_failMsg << "Expected [" << compNdx << "] = " << ref0;
595 const float ref0 = in0 < 0.0f ? -1.0f :
597 const deUint32 ulpDiff0 = getUlpDiff(out0, ref0);
601 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " with ULP threshold " << maxUlpDiff << ", got ULP diff " << ulpDiff0;
612 const int ref0 = in0 < 0 ? -1 :
615 if (out0 != ref0)
617 m_failMsg << "Expected [" << compNdx << "] = " << ref0;
1380 const float ref0 = deFloatFloor(in0);
1382 const deUint32 ulpDiff0 = hasZeroSign ? getUlpDiff(out0, ref0) : getUlpDiffIgnoreZeroSign(out0, ref0);
1387 m_failMsg << "Expected [" << compNdx << "] = " << HexFloat(ref0) << " or " << HexFloat(ref1) << ", got ULP diff " << tcu::toHex(de::min(ulpDiff0, ulpDiff1));