OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xPowPlus
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_neon.c
146
const float32x4_t
xPowPlus
= vaddq_f32(x_pow_local, k1e_10f);
147
float32x4_t ef_re = vdivq_f32(ef_re_base,
xPowPlus
);
148
float32x4_t ef_im = vdivq_f32(ef_im_base,
xPowPlus
);
aec_core_sse2.c
101
const __m128
xPowPlus
= _mm_add_ps(x_pow_local, k1e_10f);
102
__m128 ef_re = _mm_div_ps(ef_re_base,
xPowPlus
);
103
__m128 ef_im = _mm_div_ps(ef_im_base,
xPowPlus
);
Completed in 2373 milliseconds