Home
last modified time | relevance | path

Searched refs:sample_squared_x4 (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/media/base/
Dvector_math.cc153 const __m128 sample_squared_x4 = _mm_mul_ps(sample_x4, sample_x4); in EWMAAndMaxPower_SSE() local
154 max_x4 = _mm_max_ps(max_x4, sample_squared_x4); in EWMAAndMaxPower_SSE()
158 _mm_mul_ps(sample_squared_x4, smoothing_factor_x4)); in EWMAAndMaxPower_SSE()
250 const float32x4_t sample_squared_x4 = vmulq_f32(sample_x4, sample_x4); in EWMAAndMaxPower_NEON() local
251 max_x4 = vmaxq_f32(max_x4, sample_squared_x4); in EWMAAndMaxPower_NEON()
252 ewma_x4 = vmlaq_f32(ewma_x4, sample_squared_x4, smoothing_factor_x4); in EWMAAndMaxPower_NEON()