Home
last modified time | relevance | path

Searched refs:max_error (Results 1 – 10 of 10) sorted by relevance

/external/libpng/contrib/tools/
DmakesRGB.c79 double max_error = 0; in main() local
303 max_error = .4999; in main()
315 if (err > (max_error+.001) || err < (min_error-.001)) in main()
324 if (err > max_error) in main()
325 max_error = err; in main()
385 min_error, max_error, error_count, (100.*error_count)/max_input); in main()
/external/ImageMagick/Magick++/tests/
Dcolor.cpp117 double max_error = resolution + MagickEpsilon; in main() local
122 if ( gray.shade() < value - max_error || gray.shade() > value + max_error ) in main()
/external/libvpx/libvpx/test/
Dvp8_fdct4x4_test.cc154 int max_error = 0; in TEST_P() local
174 if (max_error < error) max_error = error; in TEST_P()
179 EXPECT_GE(1, max_error) in TEST_P()
Dfdct8x8_test.cc214 int max_error = 0; in RunRoundTripErrorCheck() local
272 if (max_error < error) max_error = error; in RunRoundTripErrorCheck()
277 EXPECT_GE(1 << 2 * (bit_depth_ - 8), max_error) in RunRoundTripErrorCheck()
288 int max_error = 0; in RunExtremalCheck() local
355 if (max_error < error) max_error = error; in RunExtremalCheck()
362 EXPECT_GE(1 << 2 * (bit_depth_ - 8), max_error) in RunExtremalCheck()
Ddct32x32_test.cc106 uint32_t max_error = 0; in TEST_P() local
152 if (max_error < error) max_error = error; in TEST_P()
158 max_error /= 2; in TEST_P()
162 EXPECT_GE(1u << 2 * (bit_depth_ - 8), max_error) in TEST_P()
Dfdct4x4_test.cc103 uint32_t max_error = 0; in RunAccuracyCheck() local
151 if (max_error < error) max_error = error; in RunAccuracyCheck()
156 EXPECT_GE(static_cast<uint32_t>(limit), max_error) in RunAccuracyCheck()
Ddct16x16_test.cc321 uint32_t max_error = 0; in RunAccuracyCheck() local
368 if (max_error < error) max_error = error; in RunAccuracyCheck()
373 EXPECT_GE(1u << 2 * (bit_depth_ - 8), max_error) in RunAccuracyCheck()
/external/autotest/client/site_tests/kernel_Ktime/
Dkernel_Ktime.py181 max_error = start_error + current_error
182 drift_threshold = elapsed_rtc * self.ALLOWABLE_DRIFT + max_error
/external/webrtc/talk/media/base/
Dvideoframe_unittest.h446 int max_error) { in IsPlaneEqual() argument
451 if (abs(static_cast<int>(r1[x] - r2[x])) > max_error) { in IsPlaneEqual()
477 int max_error) { in IsEqual() argument
485 static_cast<uint32_t>(height), max_error) && in IsEqual()
488 static_cast<uint32_t>((height + 1) / 2), max_error) && in IsEqual()
491 static_cast<uint32_t>((height + 1) / 2), max_error); in IsEqual()
496 int max_error) { in IsEqual() argument
504 max_error); in IsEqual()
509 int hcrop, int vcrop, int max_error) { in IsEqualWithCrop() argument
526 max_error); in IsEqualWithCrop()
/external/libpng/contrib/libtests/
Dtarith.c78 double max_error=2; /* As a percentage error-in-last-digit/.5 */ in validation_ascii_to_fp() local
96 max_error = atof(*++argv); in validation_ascii_to_fp()
203 double percent = (precision >= DBL_DIG) ? max_error_abs : max_error; in validation_ascii_to_fp()