Lines Matching defs: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));
400 IVec4 diff = abs(a - b);
401 int sum = diff.x() + diff.y() + diff.z() + diff.w();
402 int sqSum = diff.x()*diff.x() + diff.y()*diff.y() + diff.z()*diff.z() + diff.w()*diff.w();
604 const UVec4 diff = computeFlushRelaxedULPDiff(refPix, cmpPix);
605 const bool isOk = boolAll(lessThanEqual(diff, threshold));
607 maxDiff = max(maxDiff, diff);
691 Vec4 diff = abs(refPix - cmpPix);
692 bool isOk = boolAll(lessThanEqual(diff, threshold));
694 maxDiff = max(maxDiff, diff);
784 Vec4 diff = abs(refPix - cmpPix);
785 bool isOk = boolAll(lessThanEqual(diff, threshold));
787 maxDiff = max(maxDiff, diff);
869 const Vec4 diff = abs(reference - cmpPix);
870 const bool isOk = boolAll(lessThanEqual(diff, threshold));
872 maxDiff = max(maxDiff, diff);
944 U64Vec4 diff (0u, 0u, 0u, 0u);
961 diff = abs(refPix - cmpPix).cast<deUint64>();
967 diff = abs(refPix - cmpPix).cast<deUint64>();
970 maxDiff = max(maxDiff, diff);
972 const bool isOk = boolAll(lessThanEqual(diff, threshold64));
1069 float diff = de::abs(refDepth - cmpDepth);
1071 isOk = diff <= threshold;
1072 maxDiff = (float) deMax(maxDiff, diff);