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

12 3

  /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...]
  /external/libvpx/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.
406 double mse = 0; local
425 mse += distance(expectedColors[idx], actualColors[idx]);
428 mse /= width * height;
431 assertTrue("MSE too large for normal case: " + mse,
432 mse <= mseMargin);
434 assertFalse("MSE too small for abnormal case: " + mse,
435 mse <= mseMargin)
    [all...]
BitmapFactoryTest.java 649 double mse = 0; local
660 mse += distance(expectedColors[idx], actualColors[idx], isPremultiplied);
663 mse /= width * height;
666 assertTrue("MSE " + mse + "larger than the threshold: " + mseMargin,
667 mse <= mseMargin);
669 assertFalse("MSE " + mse + "smaller than the threshold: " + mseMargin,
670 mse <= mseMargin);
  /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/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
svc_encodeframe.c 544 double mse[COMPONENTS]; local
572 mse[j] = si->sse_sum[i][j] * 255.0 * 255.0 / scale[j];
578 "Layer %d Overall MSE=[%2.3f, %2.3f, %2.3f, %2.3f]\n", i, mse[0],
579 mse[1], mse[2], mse[3]);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
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/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/chromium_org/third_party/libvpx/source/libvpx/
tools_common.h 150 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/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/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
compare.cc 174 double mse = (double)(count) / (double)(sse); local
175 psnr = 10.0 * log10(255.0 * 255.0 * mse);
  /external/chromium_org/third_party/libyuv/source/
compare.cc 174 double mse = (double)(count) / (double)(sse); local
175 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...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Python.stg 814 mse = MismatchedSetException(None, self.input)
817 self.recover(mse)
818 raise mse
820 raise mse
821 <! use following code to make it recover inline; remove throw mse;
823 self.input, mse, self.FOLLOW_set_in_<ruleName><elementIndex>
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg 716 val mse = new MismatchedSetException(null,input)
719 recover(mse)
720 throw mse
722 throw mse
723 <! use following code to make it recover inline; remove throw mse;
724 recoverFromMismatchedSet(input,mse,FOLLOW_set_in_<ruleName><elementIndex>)
    [all...]
  /external/libvorbis/lib/
floor1.c 543 int mse=0; local
548 mse=(y-val);
549 mse*=mse;
566 mse+=((y-val)*(y-val));
578 if(mse/n>info->maxerr)return(1);
  /external/libvpx/libvpx/vpx/src/
svc_encodeframe.c 1057 double mse[COMPONENTS]; local
    [all...]

Completed in 3059 milliseconds

12 3