Home
last modified time | relevance | path

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

/external/chromium_org/net/base/
Dfile_stream_metrics.cc47 static const int max_error = MaxFileErrorUmaValue(); in RecordFileError() local
51 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Open", error, max_error); in RecordFileError()
56 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Write", error, max_error); in RecordFileError()
61 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Read", error, max_error); in RecordFileError()
66 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Seek", error, max_error); in RecordFileError()
71 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Flush", error, max_error); in RecordFileError()
76 UMA_HISTOGRAM_ENUMERATION("Net.FileError_SetEof", error, max_error); in RecordFileError()
82 UMA_HISTOGRAM_ENUMERATION("Net.FileError_GetSize", error, max_error); in RecordFileError()
88 UMA_HISTOGRAM_ENUMERATION("Net.FileError_Close", error, max_error); in RecordFileError()
/external/libvpx/libvpx/test/
Dfdct8x8_test.cc122 int max_error = 0; in RunRoundTripErrorCheck() local
157 if (max_error < error) in RunRoundTripErrorCheck()
158 max_error = error; in RunRoundTripErrorCheck()
163 EXPECT_GE(1, max_error) in RunRoundTripErrorCheck()
174 int max_error = 0; in RunExtremalCheck() local
198 if (max_error < error) in RunExtremalCheck()
199 max_error = error; in RunExtremalCheck()
203 EXPECT_GE(1, max_error) in RunExtremalCheck()
Dvp8_fdct4x4_test.cc137 int max_error = 0; in TEST() local
156 if (max_error < error) in TEST()
157 max_error = error; in TEST()
162 EXPECT_GE(1, max_error ) in TEST()
Ddct32x32_test.cc100 uint32_t max_error = 0; in TEST_P() local
122 if (max_error < error) in TEST_P()
123 max_error = error; in TEST_P()
129 max_error /= 2; in TEST_P()
133 EXPECT_GE(1u, max_error) in TEST_P()
Dfdct4x4_test.cc58 uint32_t max_error = 0; in RunAccuracyCheck() local
81 if (max_error < error) in RunAccuracyCheck()
82 max_error = error; in RunAccuracyCheck()
87 EXPECT_GE(1u, max_error) in RunAccuracyCheck()
Ddct16x16_test.cc286 uint32_t max_error = 0; in RunAccuracyCheck() local
309 if (max_error < error) in RunAccuracyCheck()
310 max_error = error; in RunAccuracyCheck()
315 EXPECT_GE(1u, max_error) in RunAccuracyCheck()
/external/chromium_org/media/base/
Dmulti_channel_resampler_unittest.cc97 double max_error = 0.0; in TestValues() local
105 max_error = std::max(max_error, error); in TestValues()
114 EXPECT_LE(max_error, expected_max_error); in TestValues()
/external/chromium_org/remoting/codec/
Dcodec_test.cc148 double max_error = 0.0; in VerifyResultsApprox() local
161 max_error = std::max(max_error, error); in VerifyResultsApprox()
169 EXPECT_LE(max_error, max_error_limit); in VerifyResultsApprox()
172 VLOG(0) << "Max error: " << max_error; in VerifyResultsApprox()
/external/chromium_org/ui/surface/
Daccelerated_surface_transformer_win_unittest.cc223 int max_error = 0; in AssertSameColor() local
225 max_error = std::max(max_error, in AssertSameColor()
228 if (max_error <= color_error_tolerance()) in AssertSameColor()
237 << max_error << "; max allowed is " << color_error_tolerance(); in AssertSameColor()
245 int max_error = std::abs((int) color_a - (int) color_b); in AssertSameColor() local
246 if (max_error <= color_error_tolerance()) in AssertSameColor()
/external/chromium_org/third_party/libwebp/enc/
Dquant.c504 score_t max_error; in TrellisQuantizeBlock() local
509 max_error = 0; in TrellisQuantizeBlock()
513 max_error += kWeightTrellis[j] * err; in TrellisQuantizeBlock()
522 best_score = RDScoreTrellis(lambda, cost, max_error); in TrellisQuantizeBlock()
528 NODE(n, m).error = max_error; in TrellisQuantizeBlock()
/external/webp/src/enc/
Dquant.c504 score_t max_error; in TrellisQuantizeBlock() local
509 max_error = 0; in TrellisQuantizeBlock()
513 max_error += kWeightTrellis[j] * err; in TrellisQuantizeBlock()
522 best_score = RDScoreTrellis(lambda, cost, max_error); in TrellisQuantizeBlock()
528 NODE(n, m).error = max_error; in TrellisQuantizeBlock()
/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dvideoframe_unittest.h395 int max_error) { in IsPlaneEqual() argument
400 if (abs(static_cast<int>(r1[x] - r2[x])) > max_error) { in IsPlaneEqual()
421 int max_error) { in IsEqual() argument
428 width, height, max_error) && in IsEqual()
430 (width + 1) / 2, (height + 1) / 2, max_error) && in IsEqual()
432 (width + 1) / 2, (height + 1) / 2, max_error); in IsEqual()
437 int max_error) { in IsEqual() argument
445 max_error); in IsEqual()
450 int hcrop, int vcrop, int max_error) { in IsEqualWithCrop() argument
467 max_error); in IsEqualWithCrop()