OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:absEfInv
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_neon.c
154
const float32x4_t
absEfInv
= vdivq_f32(kThresh, absEfPlus);
155
uint32x4_t ef_re_if = vreinterpretq_u32_f32(vmulq_f32(ef_re,
absEfInv
));
156
uint32x4_t ef_im_if = vreinterpretq_u32_f32(vmulq_f32(ef_im,
absEfInv
));
aec_core_sse2.c
110
const __m128
absEfInv
= _mm_div_ps(kThresh, absEfPlus);
111
__m128 ef_re_if = _mm_mul_ps(ef_re,
absEfInv
);
112
__m128 ef_im_if = _mm_mul_ps(ef_im,
absEfInv
);
Completed in 116 milliseconds