Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_neon.c58 const float32x4_t h_fft_buf_im = vld1q_f32(&h_fft_buf[1][pos + j]); in FilterFarNEON() local
62 const float32x4_t e = vmlsq_f32(a, x_fft_buf_im, h_fft_buf_im); in FilterFarNEON()
63 const float32x4_t c = vmulq_f32(x_fft_buf_re, h_fft_buf_im); in FilterFarNEON()
Daec_core_sse2.c54 const __m128 h_fft_buf_im = _mm_loadu_ps(&h_fft_buf[1][pos + j]); in FilterFarSSE2() local
58 const __m128 b = _mm_mul_ps(x_fft_buf_im, h_fft_buf_im); in FilterFarSSE2()
59 const __m128 c = _mm_mul_ps(x_fft_buf_re, h_fft_buf_im); in FilterFarSSE2()