Searched defs:smoothing_factor (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/media/base/
H A Dvector_math.cc65 float initial_value, const float src[], int len, float smoothing_factor) {
68 return EWMAAndMaxPower_FUNC(initial_value, src, len, smoothing_factor);
72 float initial_value, const float src[], int len, float smoothing_factor) {
74 const float weight_prev = 1.0f - smoothing_factor;
79 result.first += sample_squared * smoothing_factor;
121 float initial_value, const float src[], int len, float smoothing_factor) {
137 const __m128 smoothing_factor_x4 = _mm_set_ps1(smoothing_factor);
138 const float weight_prev = 1.0f - smoothing_factor;
182 result.first += sample_squared * smoothing_factor;
218 float initial_value, const float src[], int len, float smoothing_factor) {
64 EWMAAndMaxPower( float initial_value, const float src[], int len, float smoothing_factor) argument
71 EWMAAndMaxPower_C( float initial_value, const float src[], int len, float smoothing_factor) argument
120 EWMAAndMaxPower_SSE( float initial_value, const float src[], int len, float smoothing_factor) argument
217 EWMAAndMaxPower_NEON( float initial_value, const float src[], int len, float smoothing_factor) argument
[all...]
H A Dvector_math_unittest.cc151 float smoothing_factor)
158 smoothing_factor_(smoothing_factor),
150 EWMATestScenario(float initial_value, const float src[], int len, float smoothing_factor) argument
/external/chromium_org/content/browser/speech/
H A Dspeech_recognizer_impl.cc797 const float smoothing_factor = (level > audio_level_) ? kUpSmoothingFactor : local
799 audio_level_ += (level - audio_level_) * smoothing_factor;
/external/chromium_org/third_party/libjpeg_turbo/
H A Djpeglib.h378 int smoothing_factor; /* 1..100, or 0 for no input smoothing */ member in struct:jpeg_compress_struct
/external/jpeg/
H A Djpeglib.h328 int smoothing_factor; /* 1..100, or 0 for no input smoothing */ member in struct:jpeg_compress_struct
/external/qemu/distrib/jpeg-6b/
H A Djpeglib.h328 int smoothing_factor; /* 1..100, or 0 for no input smoothing */ member in struct:jpeg_compress_struct
/external/pdfium/core/include/thirdparties/libjpeg/
H A Djpeglib.h391 int smoothing_factor; /* 1..100, or 0 for no input smoothing */ member in struct:jpeg_compress_struct
/external/pdfium/core/src/fxcodec/libjpeg/
H A Djpeglib.h391 int smoothing_factor; /* 1..100, or 0 for no input smoothing */ member in struct:jpeg_compress_struct

Completed in 127 milliseconds