OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:weight_prev_x4
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/media/base/simd/
vector_math_sse.cc
67
const __m128
weight_prev_x4
= _mm_set_ps1(weight_prev);
local
69
_mm_mul_ps(
weight_prev_x4
,
weight_prev_x4
);
91
ewma_x4 = _mm_mul_ps(ewma_x4,
weight_prev_x4
);
93
ewma_x4 = _mm_mul_ps(ewma_x4,
weight_prev_x4
);
95
ewma_x4 = _mm_mul_ss(ewma_x4,
weight_prev_x4
);
/external/chromium_org/media/base/
vector_math.cc
158
const float32x4_t
weight_prev_x4
= vdupq_n_f32(weight_prev);
local
160
vmulq_f32(
weight_prev_x4
,
weight_prev_x4
);
179
ewma_x4 = vmulq_f32(ewma_x4,
weight_prev_x4
);
181
ewma_x4 = vmulq_f32(ewma_x4,
weight_prev_x4
);
183
ewma_x4 = vmulq_f32(ewma_x4,
weight_prev_x4
);
Completed in 662 milliseconds