/external/chromium_org/net/base/ |
file_stream_metrics.cc | 47 static const int max_error = MaxFileErrorUmaValue(); local 51 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Open", error, max_error); 56 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Write", error, max_error); 61 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Read", error, max_error); 66 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Seek", error, max_error); 71 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Flush", error, max_error); 76 UMA_HISTOGRAM_ENUMERATION("Net.FileError_SetEof", error, max_error); 82 UMA_HISTOGRAM_ENUMERATION("Net.FileError_GetSize", error, max_error); 88 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Close", error, max_error);
|
/external/chromium_org/media/base/ |
multi_channel_resampler_unittest.cc | 97 double max_error = 0.0; local 105 max_error = std::max(max_error, error); 114 EXPECT_LE(max_error, expected_max_error);
|
/external/libvpx/libvpx/test/ |
vp8_fdct4x4_test.cc | 137 int max_error = 0; local 156 if (max_error < error) 157 max_error = error; 162 EXPECT_GE(1, max_error )
|
fdct8x8_test.cc | 122 int max_error = 0; local 157 if (max_error < error) 158 max_error = error; 163 EXPECT_GE(1, max_error) 174 int max_error = 0; local 198 if (max_error < error) 199 max_error = error; 203 EXPECT_GE(1, max_error)
|
dct32x32_test.cc | 100 uint32_t max_error = 0; local 122 if (max_error < error) 123 max_error = error; 129 max_error /= 2; 133 EXPECT_GE(1u, max_error)
|
fdct4x4_test.cc | 58 uint32_t max_error = 0; local 81 if (max_error < error) 82 max_error = error; 87 EXPECT_GE(1u, max_error)
|
dct16x16_test.cc | 286 uint32_t max_error = 0; local 309 if (max_error < error) 310 max_error = error; 315 EXPECT_GE(1u, max_error)
|
/external/chromium_org/remoting/codec/ |
codec_test.cc | 148 double max_error = 0.0; local 161 max_error = std::max(max_error, error); 169 EXPECT_LE(max_error, max_error_limit); 172 VLOG(0) << "Max error: " << max_error;
|
/external/chromium_org/ui/surface/ |
accelerated_surface_transformer_win_unittest.cc | 223 int max_error = 0; local 225 max_error = std::max(max_error, 228 if (max_error <= color_error_tolerance()) 237 << max_error << "; max allowed is " << color_error_tolerance(); 245 int max_error = std::abs((int) color_a - (int) color_b); local 246 if (max_error <= color_error_tolerance()) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
videoframe_unittest.h | 395 int max_error) { 400 if (abs(static_cast<int>(r1[x] - r2[x])) > max_error) { 421 int max_error) { 428 width, height, max_error) && 430 (width + 1) / 2, (height + 1) / 2, max_error) && 432 (width + 1) / 2, (height + 1) / 2, max_error); 437 int max_error) { 445 max_error); 450 int hcrop, int vcrop, int max_error) { 467 max_error); [all...] |
/external/chromium_org/third_party/libwebp/enc/ |
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 [all...] |
/external/webp/src/enc/ |
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 [all...] |