Home
last modified time | relevance | path

Searched refs:total_error (Results 1 – 8 of 8) sorted by relevance

/external/skqp/tools/skqp/
DREADME_ALGORITHM.md50 total_error = 0
70 total_error += pixel_error
76 return ((total_error, max_error, bad_pixels), error_image)
78 For each render test, there is a threshold value for `total_error`, :
81 If `passing_threshold >= 0 && total_error > passing_threshold`, then the test
88 backend_name,render_test_name,max_error,bad_pixels,total_error
93 well as the three metrics: `max_error`, `bad_pixels`, and `total_error`.
/external/skia/tools/skqp/
DREADME_ALGORITHM.md50 total_error = 0
70 total_error += pixel_error
76 return ((total_error, max_error, bad_pixels), error_image)
78 For each render test, there is a threshold value for `total_error`, :
81 If `passing_threshold >= 0 && total_error > passing_threshold`, then the test
88 backend_name,render_test_name,max_error,bad_pixels,total_error
93 well as the three metrics: `max_error`, `bad_pixels`, and `total_error`.
/external/libvpx/libvpx/test/
Dvp8_fdct4x4_test.cc155 double total_error = 0; in TEST_P() local
175 total_error += error; in TEST_P()
182 EXPECT_GE(count_test_block, total_error) in TEST_P()
Ddct32x32_test.cc116 int64_t total_error = 0; in TEST_P() local
162 total_error += error; in TEST_P()
168 total_error /= 45; in TEST_P()
174 EXPECT_GE(count_test_block << 2 * (bit_depth_ - 8), total_error) in TEST_P()
Dfdct8x8_test.cc216 int total_error = 0; in RunRoundTripErrorCheck() local
274 total_error += error; in RunRoundTripErrorCheck()
282 EXPECT_GE((count_test_block << 2 * (bit_depth_ - 8)) / 5, total_error) in RunRoundTripErrorCheck()
290 int total_error = 0; in RunExtremalCheck() local
357 total_error += error; in RunExtremalCheck()
367 EXPECT_GE((count_test_block << 2 * (bit_depth_ - 8)) / 5, total_error) in RunExtremalCheck()
Ddct_test.cc219 int64_t total_error = 0; in RunAccuracyCheck() local
254 total_error += error; in RunAccuracyCheck()
264 EXPECT_GE(count_test_block * limit, total_error) in RunAccuracyCheck()
Ddct16x16_test.cc322 int64_t total_error = 0; in RunAccuracyCheck() local
369 total_error += error; in RunAccuracyCheck()
376 EXPECT_GE(count_test_block << 2 * (bit_depth_ - 8), total_error) in RunAccuracyCheck()
/external/libaom/libaom/test/
Dtransform_test_base.h50 int64_t total_error = 0; in RunAccuracyCheck() local
94 total_error += error; in RunAccuracyCheck()
98 double avg_error = total_error * 1. / count_test_block / num_coeffs_; in RunAccuracyCheck()