HomeSort by relevance Sort by last modified time
    Searched refs:smoothing_factor (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/media/base/
vector_math_testing.h 20 float initial_value, const float src[], int len, float smoothing_factor);
28 float initial_value, const float src[], int len, float smoothing_factor);
37 float initial_value, const float src[], int len, float smoothing_factor);
vector_math.h 35 // y[n] = smoothing_factor * src[n]^2 + (1-smoothing_factor) * y[n-1]
39 float initial_value, const float src[], int len, float smoothing_factor);
vector_math.cc 41 float initial_value, const float src[], int len, float smoothing_factor);
92 float initial_value, const float src[], int len, float smoothing_factor) {
95 return EWMAAndMaxPower_FUNC(initial_value, src, len, smoothing_factor);
99 float initial_value, const float src[], int len, float smoothing_factor) {
101 const float weight_prev = 1.0f - smoothing_factor;
106 result.first += sample_squared * smoothing_factor;
140 float initial_value, const float src[], int len, float smoothing_factor) {
156 const float32x4_t smoothing_factor_x4 = vdupq_n_f32(smoothing_factor);
157 const float weight_prev = 1.0f - smoothing_factor;
197 result.first += sample_squared * smoothing_factor;
    [all...]
vector_math_unittest.cc 146 float smoothing_factor)
153 smoothing_factor_(smoothing_factor),
  /external/chromium_org/media/base/simd/
vector_math_sse.cc 49 float initial_value, const float src[], int len, float smoothing_factor) {
65 const __m128 smoothing_factor_x4 = _mm_set_ps1(smoothing_factor);
66 const float weight_prev = 1.0f - smoothing_factor;
110 result.first += sample_squared * smoothing_factor;
  /external/jpeg/
jcsample.c 44 * where SF = (smoothing_factor / 1024).
318 * Also recall that SF = smoothing_factor / 1024.
321 memberscale = 16384 - cinfo->smoothing_factor * 80; /* scaled (1-5*SF)/4 */
322 neighscale = cinfo->smoothing_factor * 16; /* scaled SF/4 */
412 * Also recall that SF = smoothing_factor / 1024.
415 memberscale = 65536L - cinfo->smoothing_factor * 512L; /* scaled 1-8*SF */
416 neighscale = cinfo->smoothing_factor * 64; /* scaled SF */
488 if (cinfo->smoothing_factor) {
501 if (cinfo->smoothing_factor) {
516 if (cinfo->smoothing_factor && !smoothok
    [all...]
cjpeg.c 408 cinfo->smoothing_factor = val;
jcparam.c 324 cinfo->smoothing_factor = 0;
jpeglib.h 328 int smoothing_factor; /* 1..100, or 0 for no input smoothing */ member in struct:jpeg_compress_struct
    [all...]
  /external/qemu/distrib/jpeg-6b/
jcsample.c 44 * where SF = (smoothing_factor / 1024).
318 * Also recall that SF = smoothing_factor / 1024.
321 memberscale = 16384 - cinfo->smoothing_factor * 80; /* scaled (1-5*SF)/4 */
322 neighscale = cinfo->smoothing_factor * 16; /* scaled SF/4 */
412 * Also recall that SF = smoothing_factor / 1024.
415 memberscale = 65536L - cinfo->smoothing_factor * 512L; /* scaled 1-8*SF */
416 neighscale = cinfo->smoothing_factor * 64; /* scaled SF */
488 if (cinfo->smoothing_factor) {
501 if (cinfo->smoothing_factor) {
516 if (cinfo->smoothing_factor && !smoothok
    [all...]
cjpeg.c 408 cinfo->smoothing_factor = val;
jcparam.c 324 cinfo->smoothing_factor = 0;
jpeglib.h 328 int smoothing_factor; /* 1..100, or 0 for no input smoothing */ member in struct:jpeg_compress_struct
    [all...]
  /external/chromium_org/content/browser/speech/
speech_recognizer_impl.cc 792 const float smoothing_factor = (level > audio_level_) ? kUpSmoothingFactor : local
794 audio_level_ += (level - audio_level_) * smoothing_factor;

Completed in 115 milliseconds