/external/opencv3/modules/calib3d/test/ |
H A D | test_homography_decomp.cpp | 111 double max_error = 1.0e-3; local 125 if ( rdist < max_error 126 && tdist < max_error 127 && ndist < max_error )
|
/external/ImageMagick/Magick++/tests/ |
H A D | color.cpp | 117 double max_error = resolution + MagickEpsilon; local 122 if ( gray.shade() < value - max_error || gray.shade() > value + max_error )
|
/external/libvpx/libvpx/test/ |
H A D | partial_idct_test.cc | 89 int max_error = 0; local 128 if (max_error < error) 129 max_error = error; 133 EXPECT_EQ(0, max_error) 164 int max_error = 0; local 192 if (max_error < error) 193 max_error = error; 197 EXPECT_EQ(0, max_error)
|
H A D | vp8_fdct4x4_test.cc | 132 int max_error = 0; local 151 if (max_error < error) 152 max_error = error; 157 EXPECT_GE(1, max_error )
|
H A D | vp10_inv_txfm_test.cc | 177 int max_error = 0; local 216 if (max_error < error) 217 max_error = error; 221 EXPECT_EQ(0, max_error) 252 int max_error = 0; local 280 if (max_error < error) 281 max_error = error; 285 EXPECT_EQ(0, max_error)
|
H A D | dct32x32_test.cc | 121 uint32_t max_error = 0; local 167 if (max_error < error) 168 max_error = error; 174 max_error /= 2; 178 EXPECT_GE(1u << 2 * (bit_depth_ - 8), max_error)
|
H A D | fdct8x8_test.cc | 215 int max_error = 0; local 274 if (max_error < error) 275 max_error = error; 280 EXPECT_GE(1 << 2 * (bit_depth_ - 8), max_error) 291 int max_error = 0; local 359 if (max_error < error) 360 max_error = error; 367 EXPECT_GE(1 << 2 * (bit_depth_ - 8), max_error)
|
H A D | fdct4x4_test.cc | 103 uint32_t max_error = 0; local 151 if (max_error < error) 152 max_error = error; 157 EXPECT_GE(static_cast<uint32_t>(limit), max_error)
|
H A D | dct16x16_test.cc | 334 uint32_t max_error = 0; local 382 if (max_error < error) 383 max_error = error; 388 EXPECT_GE(1u << 2 * (bit_depth_ - 8), max_error)
|
/external/libpng/contrib/tools/ |
H A D | makesRGB.c | 79 double max_error = 0; local 303 max_error = .4999; 315 if (err > (max_error+.001) || err < (min_error-.001)) 324 if (err > max_error) 325 max_error = err; 385 min_error, max_error, error_count, (100.*error_count)/max_input);
|
/external/autotest/client/site_tests/kernel_Ktime/ |
H A D | kernel_Ktime.py | 100 RTC ticked in the range of [ktime - max_error, ktime + max_error] 181 max_error = start_error + current_error 182 drift_threshold = elapsed_rtc * self.ALLOWABLE_DRIFT + max_error
|
/external/webrtc/talk/media/base/ |
H A D | videoframe_unittest.h | 446 int max_error) { 451 if (abs(static_cast<int>(r1[x] - r2[x])) > max_error) { 477 int max_error) { 485 static_cast<uint32_t>(height), max_error) && 488 static_cast<uint32_t>((height + 1) / 2), max_error) && 491 static_cast<uint32_t>((height + 1) / 2), max_error); 496 int max_error) { 504 max_error); 509 int hcrop, int vcrop, int max_error) { 526 max_error); 439 IsPlaneEqual(const std::string& name, const uint8_t* plane1, uint32_t pitch1, const uint8_t* plane2, uint32_t pitch2, uint32_t width, uint32_t height, int max_error) argument 465 IsEqual(const cricket::VideoFrame& frame, size_t width, size_t height, size_t pixel_width, size_t pixel_height, int64_t time_stamp, const uint8_t* y, uint32_t ypitch, const uint8_t* u, uint32_t upitch, const uint8_t* v, uint32_t vpitch, int max_error) argument 494 IsEqual(const cricket::VideoFrame& frame1, const cricket::VideoFrame& frame2, int max_error) argument 507 IsEqualWithCrop(const cricket::VideoFrame& frame1, const cricket::VideoFrame& frame2, int hcrop, int vcrop, int max_error) argument [all...] |
/external/opencv3/3rdparty/libwebp/enc/ |
H A D | quant.c | 504 score_t max_error; local 509 max_error = 0; 513 max_error += kWeightTrellis[j] * err; 522 best_score = RDScoreTrellis(lambda, cost, max_error); 528 NODE(n, m).error = max_error; 565 // subtract as distortion to max_error
|
/external/libpng/contrib/libtests/ |
H A D | tarith.c | 78 double max_error=2; /* As a percentage error-in-last-digit/.5 */ local 96 max_error = atof(*++argv); 203 double percent = (precision >= DBL_DIG) ? max_error_abs : max_error;
|