HomeSort by relevance Sort by last modified time
    Searched defs:mse (Results 1 - 25 of 46) sorted by null

1 2

  /external/chromium_org/third_party/libvpx/source/libvpx/test/
util.h 39 double mse = static_cast<double>(sqrerr) / (width_y * height_y); local
41 if (mse > 0.0) {
42 psnr = 10 * log10(255.0 * 255.0 / mse);
  /external/libvpx/libvpx/test/
util.h 39 double mse = static_cast<double>(sqrerr) / (width_y * height_y); local
41 if (mse > 0.0) {
42 psnr = 10 * log10(255.0 * 255.0 / mse);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
util.h 39 double mse = static_cast<double>(sqrerr) / (width_y * height_y); local
41 if (mse > 0.0) {
42 psnr = 10 * log10(255.0 * 255.0 / mse);
  /external/chromium_org/third_party/libyuv/util/
compare.cc 55 double mse = static_cast<double>(sum_square_err) / local
57 printf(", mse %.2f", mse);
  /external/libyuv/files/util/
compare.cc 55 double mse = static_cast<double>(sum_square_err) / local
57 printf(", mse %.2f", mse);
  /external/chromium_org/third_party/webrtc/voice_engine/
utility_unittest.cc 100 float mse = 0; local
105 mse += error * error;
109 if (mse > 0)
110 snr = 10 * log10(variance / mse);
  /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/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/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 264 MismatchedSetException mse = new MismatchedSetException(null,input); local
265 recover(mse);
266 throw mse;}
288 MismatchedSetException mse = new MismatchedSetException(null,input); local
289 recover(mse);
290 throw mse;}
480 MismatchedSetException mse = new MismatchedSetException(null,input); local
481 recover(mse);
482 throw mse;}
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/
SimpleCLexer.java 264 MismatchedSetException mse = new MismatchedSetException(null,input); local
265 recover(mse);
266 throw mse;}
288 MismatchedSetException mse = new MismatchedSetException(null,input); local
289 recover(mse);
290 throw mse;}
480 MismatchedSetException mse = new MismatchedSetException(null,input); local
481 recover(mse);
482 throw mse;}
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/tool/src/main/java/org/antlr/tool/
Interpreter.java 358 MismatchedSetException mse = local
362 actions.recognitionException(mse);
365 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/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
audio_decoder_unittest.cc 99 // with |mse|. The encoded stream should contain |expected_bytes|. For stereo
102 void EncodeDecodeTest(size_t expected_bytes, int tolerance, double mse,
132 EXPECT_LE(MseInputOutput(processed_samples, delay), mse); local
674 double mse = 1734.0; local
676 EncodeDecodeTest(data_length_, tolerance, mse);
683 double mse = 1931.0; local
685 EncodeDecodeTest(data_length_, tolerance, mse);
692 double mse = 0.0; local
697 EncodeDecodeTest(2 * data_length_, tolerance, mse);
704 double mse = 2.13e6 local
715 double mse = 434951.0; local
726 double mse = 8.18e6; local
737 double mse = 8.18e6; local
748 double mse = 3.46e6; local
758 double mse = 238630.0; local
773 double mse = 238630.0; local
783 double mse = 238630.0; local
794 double mse = 238630.0; local
809 double mse = 17.0; local
823 double mse = 20.0; local
    [all...]
  /external/libyuv/files/source/
compare.cc 424 double mse = static_cast<double>(count) / static_cast<double>(sse); local
425 psnr = 10.0 * log10(255.0 * 255.0 * mse);
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 255 // Then, compare the two resutls to check their MSE.
352 double mse = 0; local
364 mse += distance(expColors[idx], actualColors[idx]);
367 mse /= width * height;
369 Log.i(TAG, "MSE: " + mse);
371 assertTrue("MSE too large for normal case: " + mse,
372 mse <= mseMargin);
374 assertFalse("MSE too small for abnormal case: " + mse
    [all...]
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/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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/src/
svc_encodeframe.c 1057 double mse[COMPONENTS]; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
onyx_if.c 3337 const unsigned int mse = vp8_mse16x16(src + j, local
    [all...]

Completed in 805 milliseconds

1 2