Lines Matching refs:diff
124 const UVec4 diff = abs(refPix - cmpPix).cast<deUint32>();
125 const bool isOk = boolAll(lessThanEqual(diff, threshold));
143 const UVec4 diff = abs(refPix - deviatedCmpPix).cast<deUint32>();
144 const bool isOk = boolAll(lessThanEqual(diff, threshold));
166 const UVec4 diff = abs(cmpPix - deviatedRefPix).cast<deUint32>();
167 const bool isOk = boolAll(lessThanEqual(diff, threshold));
305 IVec4 diff = abs(a - b);
306 int sum = diff.x() + diff.y() + diff.z() + diff.w();
307 int sqSum = diff.x()*diff.x() + diff.y()*diff.y() + diff.z()*diff.z() + diff.w()*diff.w();
509 const UVec4 diff = computeFlushRelaxedULPDiff(refPix, cmpPix);
510 const bool isOk = boolAll(lessThanEqual(diff, threshold));
512 maxDiff = max(maxDiff, diff);
596 Vec4 diff = abs(refPix - cmpPix);
597 bool isOk = boolAll(lessThanEqual(diff, threshold));
599 maxDiff = max(maxDiff, diff);
680 const Vec4 diff = abs(reference - cmpPix);
681 const bool isOk = boolAll(lessThanEqual(diff, threshold));
683 maxDiff = max(maxDiff, diff);
765 UVec4 diff = abs(refPix - cmpPix).cast<deUint32>();
766 bool isOk = boolAll(lessThanEqual(diff, threshold));
768 maxDiff = max(maxDiff, diff);