HomeSort by relevance Sort by last modified time
    Searched refs:mse (Results 26 - 50 of 141) sorted by null

12 3 4 5 6

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Lexer.java 287 MismatchedNotSetException mse = (MismatchedNotSetException)e; local
288 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting;
291 MismatchedSetException mse = (MismatchedSetException)e; local
292 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting;
BaseRecognizer.java 282 MismatchedSetException mse = (MismatchedSetException)e; local
284 " expecting set "+mse.expecting;
287 MismatchedNotSetException mse = (MismatchedNotSetException)e; local
289 " expecting set "+mse.expecting;
  /external/webrtc/webrtc/voice_engine/
utility_unittest.cc 97 float mse = 0; local
102 mse += error * error;
106 if (mse > 0)
107 snr = 10 * log10(variance / mse);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.m 931 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
932 [self recover:mse];
933 @throw mse;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
tools_common.h 147 double sse_to_psnr(double samples, double peak, double mse);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 90 // MSE margin for WebP Region-Decoding for 'Config.RGB_565' is little bigger.
483 double mse = 0; local
502 mse += distance(expectedColors[idx], actualColors[idx]);
505 mse /= width * height;
508 assertTrue("MSE too large for normal case: " + mse,
509 mse <= mseMargin);
511 assertFalse("MSE too small for abnormal case: " + mse,
512 mse <= mseMargin)
    [all...]
BitmapFactoryTest.java 784 double mse = 0; local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/output1/
Fuzzy.m     [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableLexer.m 574 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException exceptionWithSet:nil stream:input];
575 [self recover:mse];
576 @throw mse;}
  /external/libvpx/libvpx/vpx/src/
svc_encodeframe.c 601 double mse[COMPONENTS]; local
629 mse[j] = si->sse_sum[i][j] * 255.0 * 255.0 / scale[j];
635 "Layer %d Overall MSE=[%2.3f, %2.3f, %2.3f, %2.3f]\n", i, mse[0],
636 mse[1], mse[2], mse[3]);
  /external/opencv3/samples/cpp/tutorial_code/gpu/gpu-basics-similarity/
gpu-basics-similarity.cpp 188 double mse =sse /(double)(I1.channels() * I1.total()); local
189 double psnr = 10.0*log10((255*255)/mse);
213 double mse = sse /(double)(I1.channels() * I1.total()); local
214 double psnr = 10.0*log10((255*255)/mse);
241 double mse =sse /(double)(gI1.channels() * I1.total()); local
242 double psnr = 10.0*log10((255*255)/mse);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.java 379 MismatchedSetException mse = new MismatchedSetException(null,input); local
380 throw mse;
784 MismatchedSetException mse = new MismatchedSetException(null,input); local
785 throw mse;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCTP.java 379 MismatchedSetException mse = new MismatchedSetException(null,input); local
380 throw mse;
784 MismatchedSetException mse = new MismatchedSetException(null,input); local
785 throw mse;
  /external/libvpx/libvpx/
tools_common.h 152 double sse_to_psnr(double samples, double peak, double mse);
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 431 MismatchedSetException mse = new MismatchedSetException(null,input); local
432 recover(mse);
433 throw mse;}
455 MismatchedSetException mse = new MismatchedSetException(null,input); local
456 recover(mse);
457 throw mse;}
786 MismatchedSetException mse = new MismatchedSetException(null,input); local
787 recover(mse);
788 throw mse;}
806 MismatchedSetException mse = new MismatchedSetException(null,input) local
868 MismatchedSetException mse = new MismatchedSetException(null,input); local
888 MismatchedSetException mse = new MismatchedSetException(null,input); local
948 MismatchedSetException mse = new MismatchedSetException(null,input); local
972 MismatchedSetException mse = new MismatchedSetException(null,input); local
1101 MismatchedSetException mse = new MismatchedSetException(null,input); local
1181 MismatchedSetException mse = new MismatchedSetException(null,input); local
1245 MismatchedSetException mse = new MismatchedSetException(null,input); local
1410 MismatchedSetException mse = new MismatchedSetException(null,input); local
1537 MismatchedSetException mse = new MismatchedSetException(null,input); local
1629 MismatchedSetException mse = new MismatchedSetException(null,input); local
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Lexer.as 265 var mse:MismatchedSetException = MismatchedSetException(e);
266 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting;
  /external/opencv3/samples/cpp/tutorial_code/HighGUI/video-input-psnr-ssim/
video-input-psnr-ssim.cpp 151 double mse = sse / (double)(I1.channels() * I1.total()); local
152 double psnr = 10.0 * log10((255 * 255) / mse);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Interpreter.java 358 MismatchedSetException mse = local
362 actions.recognitionException(mse);
365 throw mse;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 304 MismatchedSetException mse = (MismatchedSetException)e;
306 " expecting set " + mse.Expecting;
308 MismatchedNotSetException mse = (MismatchedNotSetException)e;
310 " expecting set " + mse.Expecting;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 353 MismatchedSetException mse = (MismatchedSetException)e;
355 " expecting set " + mse.Expecting;
359 MismatchedNotSetException mse = (MismatchedNotSetException)e;
361 " expecting set " + mse.Expecting;
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangParser.m 480 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
481 @throw mse;
  /external/libvpx/libvpx/third_party/libyuv/source/
compare.cc 222 double mse = (double)(count) / (double)(sse); local
223 psnr = 10.0 * log10(255.0 * 255.0 * mse);
  /external/libyuv/files/source/
compare.cc 189 double mse = (double)(count) / (double)(sse); local
190 psnr = 10.0 * log10(255.0 * 255.0 * mse);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg 734 MismatchedSetException mse = new MismatchedSetException(null,input);
737 recover(mse);
738 throw mse;
740 throw mse;
741 <! use following code to make it recover inline; remove throw mse;
742 recoverFromMismatchedSet(input,mse,FOLLOW_set_in_<ruleName><elementIndex>);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
Perl5.stg 710 my $mse =
714 $self->recover($mse);
715 $mse->throw();
717 $mse->throw();
718 <! use following code to make it recover inline; remove throw mse;
719 $self->recoverFromMismatchedSet($self->input, $mse, $FOLLOW_set_in_<ruleName><elementIndex>);
    [all...]

Completed in 3408 milliseconds

12 3 4 5 6