/external/deqp/modules/gles31/functional/ |
D | es31fShaderPackingFunctionTests.cpp | 166 const int maxDiff = m_precision == glu::PRECISION_HIGHP ? 1 : // Rounding only. in iterate() local 222 if (diff0 > maxDiff || diff1 > maxDiff) in iterate() 229 << "\n diffs = (" << diff0 << ", " << diff1 << "), max diff = " << maxDiff in iterate() 266 const deUint32 maxDiff = 1; // Rounding error. in iterate() local 311 if (diff0 > maxDiff || diff1 > maxDiff) in iterate() 319 << "\n ULP diffs = (" << diff0 << ", " << diff1 << "), max diff = " << maxDiff in iterate() 357 const int maxDiff = m_precision == glu::PRECISION_HIGHP ? 1 : // Rounding only. in iterate() local 413 if (diff0 > maxDiff || diff1 > maxDiff) in iterate() 420 << "\n diffs = (" << diff0 << ", " << diff1 << "), max diff = " << maxDiff in iterate() 457 const deUint32 maxDiff = 1; // Rounding error. in iterate() local [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderPackingFunctionTests.cpp | 162 const int maxDiff = m_precision == glu::PRECISION_HIGHP ? 1 : // Rounding only. in iterate() local 218 if (diff0 > maxDiff || diff1 > maxDiff) in iterate() 225 << "\n diffs = (" << diff0 << ", " << diff1 << "), max diff = " << maxDiff in iterate() 262 const deUint32 maxDiff = 1; // Rounding error. in iterate() local 307 if (diff0 > maxDiff || diff1 > maxDiff) in iterate() 315 << "\n ULP diffs = (" << diff0 << ", " << diff1 << "), max diff = " << maxDiff in iterate() 353 const int maxDiff = m_precision == glu::PRECISION_HIGHP ? 1 : // Rounding only. in iterate() local 409 if (diff0 > maxDiff || diff1 > maxDiff) in iterate() 416 << "\n diffs = (" << diff0 << ", " << diff1 << "), max diff = " << maxDiff in iterate() 453 const deUint32 maxDiff = 1; // Rounding error. in iterate() local [all …]
|
D | es3fColorClearTest.cpp | 239 RGBA maxDiff(0, 0, 0, 0); in iterate() local 263 maxDiff = max(maxDiff, diff); in iterate() 274 …m_testCtx.getLog() << tcu::TestLog::Message << "Image comparison failed, max diff = " << maxDiff <… in iterate()
|
/external/skia/tests/ |
D | BlendTest.cpp | 27 static void test(skiatest::Reporter* r, int maxDiff, Blend algorithm, in test() argument 31 if (abs_diff(blend, golden) > maxDiff) { in test() 33 dst, src, alpha, blend, golden, maxDiff); in test() 34 ASSERT(abs_diff(blend, golden) <= maxDiff); in test() 39 static void test_alpha(skiatest::Reporter* r, uint8_t alpha, int maxDiff, Blend algorithm) { in test_alpha() argument 40 SkASSERT(maxDiff >= 0); in test_alpha() 44 test(r, maxDiff, algorithm, dst, src, alpha); in test_alpha() 50 static void test_dst(skiatest::Reporter* r, uint8_t dst, int maxDiff, Blend algorithm) { in test_dst() argument 51 SkASSERT(maxDiff >= 0); in test_dst() 55 test(r, maxDiff, algorithm, dst, src, alpha); in test_dst()
|
/external/chromium_org/third_party/skia/tests/ |
D | BlendTest.cpp | 27 static void test(skiatest::Reporter* r, int maxDiff, Blend algorithm, in test() argument 31 if (abs_diff(blend, golden) > maxDiff) { in test() 33 dst, src, alpha, blend, golden, maxDiff); in test() 34 ASSERT(abs_diff(blend, golden) <= maxDiff); in test() 39 static void test_alpha(skiatest::Reporter* r, uint8_t alpha, int maxDiff, Blend algorithm) { in test_alpha() argument 40 SkASSERT(maxDiff >= 0); in test_alpha() 44 test(r, maxDiff, algorithm, dst, src, alpha); in test_alpha() 50 static void test_dst(skiatest::Reporter* r, uint8_t dst, int maxDiff, Blend algorithm) { in test_dst() argument 51 SkASSERT(maxDiff >= 0); in test_dst() 55 test(r, maxDiff, algorithm, dst, src, alpha); in test_dst()
|
/external/deqp/framework/common/ |
D | tcuImageCompare.cpp | 417 UVec4 maxDiff (0, 0, 0, 0); in floatUlpThresholdCompare() local 441 maxDiff = max(maxDiff, diff); in floatUlpThresholdCompare() 448 bool compareOk = boolAll(lessThanEqual(maxDiff, threshold)); in floatUlpThresholdCompare() 461 …log << TestLog::Message << "Image comparison failed: max difference = " << maxDiff << ", threshold… in floatUlpThresholdCompare() 510 Vec4 maxDiff (0.0f, 0.0f, 0.0f, 0.0f); in floatThresholdCompare() local 528 maxDiff = max(maxDiff, diff); in floatThresholdCompare() 535 bool compareOk = boolAll(lessThanEqual(maxDiff, threshold)); in floatThresholdCompare() 548 …log << TestLog::Message << "Image comparison failed: max difference = " << maxDiff << ", threshold… in floatThresholdCompare() 598 Vec4 maxDiff (0.0f, 0.0f, 0.0f, 0.0f); in floatThresholdCompare() local 612 maxDiff = max(maxDiff, diff); in floatThresholdCompare() [all …]
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/ |
D | InputLayoutCache.cpp | 189 size_t maxDiff = 0; in applyVertexBuffers() local 211 maxDiff = std::max(maxDiff, static_cast<size_t>(i)); in applyVertexBuffers() 221 ASSERT(minDiff <= maxDiff && maxDiff < gl::MAX_VERTEX_ATTRIBS); in applyVertexBuffers() 222 … mDeviceContext->IASetVertexBuffers(minDiff, maxDiff - minDiff + 1, mCurrentBuffers + minDiff, in applyVertexBuffers()
|
/external/deqp/modules/gles2/functional/ |
D | es2fColorClearTest.cpp | 239 RGBA maxDiff(0, 0, 0, 0); in iterate() local 263 maxDiff = max(maxDiff, diff); in iterate() 274 …m_testCtx.getLog() << tcu::TestLog::Message << "Image comparison failed, max diff = " << maxDiff <… in iterate()
|
/external/lldb/test/unittest2/test/ |
D | test_case.py | 891 self.maxDiff = None 905 self.assertEqual(self.maxDiff, 80*8) 913 self.maxDiff = len(diff)//2 923 self.maxDiff = len(diff) * 2 933 self.maxDiff = None 944 self.maxDiff = 1 949 self.maxDiff = None 953 self.maxDiff = 4
|
/external/chromium_org/tools/binary_size/ |
D | explain_binary_size_delta_unittest.py | 198 self.maxDiff = None
|
/external/chromium_org/third_party/skia/gm/rebaseline_server/ |
D | imagepair_test.py | 29 self.maxDiff = None
|
D | imagediffdb_test.py | 30 self.maxDiff = None
|
D | imagepairset_test.py | 72 self.maxDiff = None # do not truncate diffs when tests fail
|
/external/skia/gm/rebaseline_server/ |
D | imagepair_test.py | 29 self.maxDiff = None
|
D | imagediffdb_test.py | 30 self.maxDiff = None
|
D | imagepairset_test.py | 72 self.maxDiff = None # do not truncate diffs when tests fail
|
/external/chromium_org/tools/json_schema_compiler/ |
D | dart_generator_test.py | 49 self.maxDiff = 2000
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
D | api_list_data_source_test.py | 137 self.maxDiff = None
|
/external/chromium_org/tools/perf_expectations/ |
D | update_perf_expectations_unittest.py | 55 self.maxDiff = None
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/ |
D | diff_parser_unittest.py | 37 maxDiff = None variable in DiffParserTest
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
D | outputcapture.py | 112 maxDiff = None variable in OutputCaptureTestCaseBase
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
D | bot_test_expectations_unittest.py | 188 self.maxDiff = None
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/ |
D | perftestsrunner_integrationtest.py | 443 self.maxDiff = None 534 self.maxDiff = None 550 self.maxDiff = None
|
/external/chromium_org/v8/tools/unittests/ |
D | run_benchmarks_test.py | 93 self.maxDiff = None
|
/external/chromium_org/third_party/skia/tools/tests/ |
D | render_pictures_test.py | 156 self.maxDiff = MAX_DIFF_LENGTH
|