Home | History | Annotate | Download | only in base

Lines Matching refs:smoothing_factor

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) {
234 const float32x4_t smoothing_factor_x4 = vdupq_n_f32(smoothing_factor);
235 const float weight_prev = 1.0f - smoothing_factor;
275 result.first += sample_squared * smoothing_factor;