/external/chromium_org/media/base/ |
vector_math.h | 30 // y[n] = smoothing_factor * src[n]^2 + (1-smoothing_factor) * y[n-1] 34 float initial_value, const float src[], int len, float smoothing_factor);
|
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.cc | 65 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) { [all...] |
vector_math_unittest.cc | 151 float smoothing_factor) 158 smoothing_factor_(smoothing_factor),
|
/external/chromium_org/third_party/libjpeg_turbo/ |
jcsample.c | 45 * where SF = (smoothing_factor / 1024). 320 * Also recall that SF = smoothing_factor / 1024. 323 memberscale = 16384 - cinfo->smoothing_factor * 80; /* scaled (1-5*SF)/4 */ 324 neighscale = cinfo->smoothing_factor * 16; /* scaled SF/4 */ 414 * Also recall that SF = smoothing_factor / 1024. 417 memberscale = 65536L - cinfo->smoothing_factor * 512L; /* scaled 1-8*SF */ 418 neighscale = cinfo->smoothing_factor * 64; /* scaled SF */ 490 if (cinfo->smoothing_factor) { 506 if (cinfo->smoothing_factor) { 524 if (cinfo->smoothing_factor && !smoothok [all...] |
cjpeg.c | 427 cinfo->smoothing_factor = val;
|
jcparam.c | 354 cinfo->smoothing_factor = 0;
|
jpeglib.h | 378 int smoothing_factor; /* 1..100, or 0 for no input smoothing */ member in struct:jpeg_compress_struct [all...] |
/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...] |
libjpeg.doc | [all...] |
/external/pdfium/core/src/fxcodec/libjpeg/ |
fpdfapi_jcsample.c | 45 * where SF = (smoothing_factor / 1024).
319 * Also recall that SF = smoothing_factor / 1024.
322 memberscale = 16384 - cinfo->smoothing_factor * 80; /* scaled (1-5*SF)/4 */
323 neighscale = cinfo->smoothing_factor * 16; /* scaled SF/4 */
413 * Also recall that SF = smoothing_factor / 1024.
416 memberscale = 65536L - cinfo->smoothing_factor * 512L; /* scaled 1-8*SF */
417 neighscale = cinfo->smoothing_factor * 64; /* scaled SF */
489 if (cinfo->smoothing_factor) {
502 if (cinfo->smoothing_factor) {
517 if (cinfo->smoothing_factor && !smoothok) [all...] |
fpdfapi_jcparam.c | 325 cinfo->smoothing_factor = 0;
|
jpeglib.h | 391 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...] |
libjpeg.doc | [all...] |
/external/chromium_org/content/browser/speech/ |
speech_recognizer_impl.cc | 797 const float smoothing_factor = (level > audio_level_) ? kUpSmoothingFactor : local 799 audio_level_ += (level - audio_level_) * smoothing_factor;
|
/external/pdfium/core/include/thirdparties/libjpeg/ |
jpeglib.h | 391 int smoothing_factor; /* 1..100, or 0 for no input smoothing */
member in struct:jpeg_compress_struct [all...] |