OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ewma
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/media/base/simd/
vector_math_sse.cc
90
float
ewma
= EXTRACT_FLOAT(ewma_x4, 3);
local
92
ewma
+= EXTRACT_FLOAT(ewma_x4, 2);
94
ewma
+= EXTRACT_FLOAT(ewma_x4, 1);
96
ewma
+= EXTRACT_FLOAT(ewma_x4, 0);
103
std::pair<float, float> result(
ewma
, EXTRACT_FLOAT(max_x4, 0));
/external/chromium_org/media/base/
vector_math.cc
178
float
ewma
= vgetq_lane_f32(ewma_x4, 3);
local
180
ewma
+= vgetq_lane_f32(ewma_x4, 2);
182
ewma
+= vgetq_lane_f32(ewma_x4, 1);
184
ewma
+= vgetq_lane_f32(ewma_x4, 0);
190
std::pair<float, float> result(
ewma
, vget_lane_f32(max_x2, 0));
Completed in 81 milliseconds