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

  /external/chromium_org/media/base/simd/
vector_math_sse.cc 76 __m128 ewma_x4 = _mm_setr_ps(0.0f, 0.0f, 0.0f, initial_value); local
79 ewma_x4 = _mm_mul_ps(ewma_x4, weight_prev_4th_x4);
85 ewma_x4 = _mm_add_ps(ewma_x4,
90 float ewma = EXTRACT_FLOAT(ewma_x4, 3);
91 ewma_x4 = _mm_mul_ps(ewma_x4, weight_prev_x4);
92 ewma += EXTRACT_FLOAT(ewma_x4, 2);
93 ewma_x4 = _mm_mul_ps(ewma_x4, weight_prev_x4)
    [all...]
  /external/chromium_org/media/base/
vector_math.cc 167 float32x4_t ewma_x4 = vsetq_lane_f32(initial_value, vdupq_n_f32(0.0f), 3); local
170 ewma_x4 = vmulq_f32(ewma_x4, weight_prev_4th_x4);
174 ewma_x4 = vmlaq_f32(ewma_x4, sample_squared_x4, smoothing_factor_x4);
178 float ewma = vgetq_lane_f32(ewma_x4, 3);
179 ewma_x4 = vmulq_f32(ewma_x4, weight_prev_x4);
180 ewma += vgetq_lane_f32(ewma_x4, 2);
181 ewma_x4 = vmulq_f32(ewma_x4, weight_prev_x4)
    [all...]

Completed in 23 milliseconds