Searched refs:total_error (Results 1 – 8 of 8) sorted by relevance
/external/skia/tools/skqp/ |
D | README_ALGORITHM.md | 50 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/skqp/tools/skqp/ |
D | README_ALGORITHM.md | 50 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/ |
D | vp8_fdct4x4_test.cc | 155 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()
|
D | dct32x32_test.cc | 116 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()
|
D | fdct8x8_test.cc | 216 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()
|
D | dct_test.cc | 219 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()
|
D | dct16x16_test.cc | 322 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/ |
D | transform_test_base.h | 50 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()
|