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

1 2 3 4 5

  /external/libvpx/libvpx/test/
util.h 38 double mse = static_cast<double>(sqrerr) / (width_y * height_y); local
40 if (mse > 0.0) {
41 psnr = 10 * log10(255.0 * 255.0 / mse);
  /external/webrtc/webrtc/modules/audio_processing/test/
test_utils.h 108 float mse = 0; local
113 mse += error * error;
117 mse /= length;
123 if (mse > 0)
124 snr = 10 * log10(*variance / mse);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
ImageCompare.java 77 final double mse = noise / numPixels; local
78 final double psnr = 20 * Math.log10(255) - 10 * Math.log10(mse);
  /external/libyuv/files/util/
compare.cc 57 double mse = local
59 printf(", mse %.2f", mse);
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
ImageCompare.java 77 final double mse = noise / numPixels; local
78 final double psnr = 20 * Math.log10(255) - 10 * Math.log10(mse);
  /external/webrtc/webrtc/common_audio/
audio_converter_unittest.cc 57 float mse = 0; local
63 mse += error * error;
70 mse /= length;
75 if (mse > 0)
76 snr = 10 * std::log10(variance / mse);
  /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/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/libvpx/libvpx/third_party/libyuv/source/
compare.cc 189 double mse = (double)(count) / (double)(sse); local
190 psnr = 10.0 * log10(255.0 * 255.0 * mse);
  /external/libyuv/files/source/
compare.cc 191 double mse = (double)count / (double)sse; local
192 psnr = 10.0 * log10(255.0 * 255.0 * mse);
  /external/webrtc/webrtc/modules/audio_coding/neteq/
audio_decoder_unittest.cc 173 // with |mse|. The encoded stream should contain |expected_bytes|. For stereo
176 void EncodeDecodeTest(size_t expected_bytes, int tolerance, double mse,
219 mse); local
480 double mse = 1734.0; local
481 EncodeDecodeTest(data_length_, tolerance, mse);
506 double mse = 1931.0; local
507 EncodeDecodeTest(data_length_, tolerance, mse);
518 double mse = 0.0; local
519 EncodeDecodeTest(2 * data_length_, tolerance, mse);
531 double mse = 2.13e6 local
545 double mse = 434951.0; local
558 double mse = 8.18e6; local
571 double mse = 3.46e6; local
591 double mse = 238630.0; local
605 double mse = 238630.0; local
618 double mse = 238630.0; local
642 double mse = 238630.0; local
    [all...]
  /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;
SimpleCParser.java 718 MismatchedSetException mse = new MismatchedSetException(null,input); local
719 throw mse;
    [all...]
  /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;
SimpleCParser.java 718 MismatchedSetException mse = new MismatchedSetException(null,input); local
719 throw mse;
    [all...]
  /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/libvpx/libvpx/vpx/src/
svc_encodeframe.c 642 double mse[COMPONENTS]; local
669 mse[j] = si->sse_sum[i][j] * 255.0 * 255.0 / scale[j];
675 "Layer %d Overall MSE=[%2.3f, %2.3f, %2.3f, %2.3f]\n", i, mse[0],
676 mse[1], mse[2], mse[3]);
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 248 // Then, compare the two resutls to check their MSE.
346 double mse = 0; local
358 mse += distance(expColors[idx], actualColors[idx]);
361 mse /= width * height;
363 Log.i(TAG, "MSE: " + mse);
365 assertTrue("MSE too large for normal case: " + mse,
366 mse <= mseMargin);
368 assertFalse("MSE too small for abnormal case: " + mse
    [all...]
BitmapRegionDecoderTest.java 120 // MSE margin for WebP Region-Decoding for 'Config.RGB_565' is little bigger.
685 double mse = 0; local
704 mse += distance(expectedColors[idx], actualColors[idx]);
707 mse /= width * height;
710 assertTrue("MSE too large for normal case: " + mse,
711 mse <= mseMargin);
713 assertFalse("MSE too small for abnormal case: " + mse,
714 mse <= mseMargin)
    [all...]
BitmapFactoryTest.java 961 double mse = 0; local
    [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);
  /prebuilts/tools/common/m2/repository/org/antlr/antlr/3.5.2/
antlr-3.5.2.jar 

Completed in 504 milliseconds

1 2 3 4 5