Home
last modified time | relevance | path

Searched refs:mse (Results 1 – 25 of 108) sorted by relevance

12345

/external/antlr/runtime/Ruby/lib/antlr3/template/
Dgroup-file-lexer.rb380 mse = MismatchedSet( nil )
381 recover mse
382 raise mse
417 mse = MismatchedSet( nil )
418 recover mse
419 raise mse
438 mse = MismatchedSet( nil )
439 recover mse
440 raise mse
578 mse = MismatchedSet( nil )
[all …]
/external/libaom/libaom/av1/encoder/
Dpickcdef.c32 uint64_t mse[][TOTAL_STRENGTHS], int sb_count, in search_one()
45 if (mse[i][lev[gi]] < best_mse) { in search_one()
46 best_mse = mse[i][lev[gi]]; in search_one()
52 if (mse[i][j] < best) best = mse[i][j]; in search_one()
69 uint64_t (**mse)[TOTAL_STRENGTHS], int sb_count, in search_one_dual()
83 uint64_t curr = mse[0][i][lev0[gi]]; in search_one_dual()
84 curr += mse[1][i][lev1[gi]]; in search_one_dual()
94 uint64_t curr = mse[0][i][j]; in search_one_dual()
95 curr += mse[1][i][k]; in search_one_dual()
118 uint64_t mse[][TOTAL_STRENGTHS], in joint_strength_search()
[all …]
/external/webrtc/webrtc/modules/audio_coding/neteq/
Daudio_decoder_unittest.cc176 void EncodeDecodeTest(size_t expected_bytes, int tolerance, double mse, in EncodeDecodeTest() argument
219 mse); in EncodeDecodeTest()
480 double mse = 1734.0; in TEST_F() local
481 EncodeDecodeTest(data_length_, tolerance, mse); in TEST_F()
506 double mse = 1931.0; in TEST_F() local
507 EncodeDecodeTest(data_length_, tolerance, mse); in TEST_F()
518 double mse = 0.0; in TEST_F() local
519 EncodeDecodeTest(2 * data_length_, tolerance, mse); in TEST_F()
531 double mse = 2.13e6; in TEST_F() local
533 EncodeDecodeTest(500, tolerance, mse, delay); in TEST_F()
[all …]
/external/webrtc/talk/session/media/
Dyuvscaler_unittest.cc248 #define TEST_M(name, iwidth, iheight, owidth, oheight, mse) \ argument
253 EXPECT_LE(error, mse); \
259 EXPECT_LE(error, mse); \
265 EXPECT_LE(error, mse); \
271 EXPECT_LE(error, mse); \
277 EXPECT_LE(error, mse); \
283 EXPECT_LE(error, mse); \
289 EXPECT_LE(error, mse); \
295 EXPECT_LE(error, mse); \
301 EXPECT_LE(error, mse); \
[all …]
/external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCLexer.java264 MismatchedSetException mse = new MismatchedSetException(null,input); in mID() local
265 recover(mse); in mID()
266 throw mse;} in mID()
288 MismatchedSetException mse = new MismatchedSetException(null,input); in mID() local
289 recover(mse); in mID()
290 throw mse;} in mID()
480 MismatchedSetException mse = new MismatchedSetException(null,input); in mWS() local
481 recover(mse); in mWS()
482 throw mse;} in mWS()
DSimpleCLexer.m224 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
225 [self recover:mse];
226 @throw mse;
247 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
248 [self recover:mse];
249 @throw mse;
316 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
317 mse.c = anInt;
318 [self recover:mse];
319 @throw mse;
[all …]
/external/antlr/runtime/ObjC/Framework/examples/lexertest-simple/
DTestLexer.m103 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
104 [self recover:mse];
105 @throw mse;
150 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
151 [self recover:mse];
152 @throw mse;
184 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
185 [self recover:mse];
186 @throw mse;
/external/antlr/runtime/ObjC/Framework/examples/combined/
DCombinedLexer.m84 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
85 [self recover:mse];
86 @throw mse;
107 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
108 [self recover:mse];
109 @throw mse;
171 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
172 [self recover:mse];
173 @throw mse;
240 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
[all …]
/external/antlr/runtime/ObjC/Framework/examples/hoistedPredicates/
DTLexer.m119 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
120 [self recover:mse];
121 @throw mse;
142 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
143 [self recover:mse];
144 @throw mse;
206 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
207 [self recover:mse];
208 @throw mse;
275 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
[all …]
/external/webrtc/webrtc/modules/audio_processing/test/
Dtest_utils.h108 float mse = 0; in ComputeSNR() local
113 mse += error * error; in ComputeSNR()
117 mse /= length; in ComputeSNR()
123 if (mse > 0) in ComputeSNR()
124 snr = 10 * log10(*variance / mse); in ComputeSNR()
/external/webrtc/webrtc/common_audio/
Daudio_converter_unittest.cc57 float mse = 0; in ComputeSNR() local
63 mse += error * error; in ComputeSNR()
70 mse /= length; in ComputeSNR()
75 if (mse > 0) in ComputeSNR()
76 snr = 10 * std::log10(variance / mse); in ComputeSNR()
/external/libvpx/libvpx/test/
Dutil.h40 double mse = static_cast<double>(sqrerr) / (width_y * height_y); in compute_psnr() local
42 if (mse > 0.0) { in compute_psnr()
43 psnr = 10 * log10(255.0 * 255.0 / mse); in compute_psnr()
/external/libaom/libaom/test/
Dutil.h40 double mse = static_cast<double>(sqrerr) / (width_y * height_y); in compute_psnr() local
42 if (mse > 0.0) { in compute_psnr()
43 psnr = 10 * log10(255.0 * 255.0 / mse); in compute_psnr()
/external/antlr/runtime/ObjC/Framework/examples/polydiff/
DPolyLexer.m169 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
170 [self recover:mse];
171 @throw mse;
240 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
241 [self recover:mse];
242 @throw mse;
309 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
310 [self recover:mse];
311 @throw mse;
/external/antlr/runtime/ObjC/Framework/examples/treeparser/
DLangLexer.m203 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
204 [self recover:mse];
205 @throw mse;
272 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
273 [self recover:mse];
274 @throw mse;
326 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
327 [self recover:mse];
328 @throw mse;
/external/doclava/src/com/google/doclava/parser/
DJavaLexer.java431 MismatchedSetException mse = new MismatchedSetException(null,input); in mHexDigit() local
432 recover(mse); in mHexDigit()
433 throw mse;} in mHexDigit()
455 MismatchedSetException mse = new MismatchedSetException(null,input); in mLongSuffix() local
456 recover(mse); in mLongSuffix()
457 throw mse;} in mLongSuffix()
786 MismatchedSetException mse = new MismatchedSetException(null,input); in mNonIntegerNumber() local
787 recover(mse); in mNonIntegerNumber()
788 throw mse;} in mNonIntegerNumber()
806 MismatchedSetException mse = new MismatchedSetException(null,input); in mNonIntegerNumber() local
[all …]
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
DSlimLexer.cs377 MismatchedNotSetException mse = (MismatchedNotSetException)e; in GetErrorMessage()
378 …= "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; in GetErrorMessage()
382 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
383 …= "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; in GetErrorMessage()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DLexer.cs296 MismatchedNotSetException mse = (MismatchedNotSetException)e; in GetErrorMessage()
297 …g = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " + mse.Expecting; in GetErrorMessage()
299 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
300 …g = "mismatched character " + GetCharErrorDisplay(e.Character) + " expecting set " + mse.Expecting; in GetErrorMessage()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DLexer.java298 MismatchedNotSetException mse = (MismatchedNotSetException)e; in getErrorMessage() local
299 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting; in getErrorMessage()
302 MismatchedSetException mse = (MismatchedSetException)e; in getErrorMessage() local
303 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting; in getErrorMessage()
/external/webrtc/webrtc/voice_engine/
Dutility_unittest.cc97 float mse = 0; in ComputeSNR() local
102 mse += error * error; in ComputeSNR()
106 if (mse > 0) in ComputeSNR()
107 snr = 10 * log10(variance / mse); in ComputeSNR()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DLexer.cs368 MismatchedNotSetException mse = (MismatchedNotSetException)e; in GetErrorMessage()
369 …= "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; in GetErrorMessage()
373 MismatchedSetException mse = (MismatchedSetException)e; in GetErrorMessage()
374 …= "mismatched character " + GetCharErrorDisplay( e.Character ) + " expecting set " + mse.Expecting; in GetErrorMessage()
/external/libyuv/files/util/
Dcompare.cc57 double mse = in main() local
59 printf(", mse %.2f", mse); in main()
/external/antlr/runtime/ObjC/Framework/examples/scopes/
DSymbolTableLexer.m373 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
374 [self recover:mse];
375 @throw mse;
442 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
443 [self recover:mse];
444 @throw mse;
511 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
512 [self recover:mse];
513 @throw mse;
/external/antlr/runtime/ObjC/Framework/examples/LL-star/
DSimpleCLexer.m565 MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
566 [self recover:mse];
567 @throw mse;
588 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
589 [self recover:mse];
590 @throw mse;
652 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
653 [self recover:mse];
654 @throw mse;
721 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
[all …]
/external/antlr/runtime/ObjC/Framework/examples/treerewrite/
DTreeRewriteLexer.m99 … MismatchedSetException *mse = [MismatchedSetException newException:nil stream:input];
100 [self recover:mse];
101 @throw mse;

12345