Home
last modified time | relevance | path

Searched refs:e_fft (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core.c218 float e_fft[2][PART_LEN1], in FilterAdaptation()
236 e_fft[0][j], in FilterAdaptation()
237 e_fft[1][j]); in FilterAdaptation()
240 e_fft[0][j], in FilterAdaptation()
241 e_fft[1][j]); in FilterAdaptation()
245 e_fft[0][PART_LEN], in FilterAdaptation()
246 e_fft[1][PART_LEN]); in FilterAdaptation()
941 float e_fft[2][PART_LEN1]; in EchoSubtraction() local
972 Fft(e_extended, e_fft); in EchoSubtraction()
975 &e_fft[0][0], in EchoSubtraction()
[all …]
Daec_core_mips.c446 float e_fft[2][PART_LEN1], in WebRtcAec_FilterAdaptation_mips()
461 float* bRe = e_fft[0]; in WebRtcAec_FilterAdaptation_mips()
462 float* bIm = e_fft[1]; in WebRtcAec_FilterAdaptation_mips()
Daec_core_neon.c193 float e_fft[2][PART_LEN1], in FilterAdaptationNEON()
211 const float32x4_t e_fft_re = vld1q_f32(&e_fft[0][j]); in FilterAdaptationNEON()
212 const float32x4_t e_fft_im = vld1q_f32(&e_fft[1][j]); in FilterAdaptationNEON()
229 e_fft[0][PART_LEN], in FilterAdaptationNEON()
230 e_fft[1][PART_LEN]); in FilterAdaptationNEON()
Daec_core_sse2.c155 float e_fft[2][PART_LEN1], in FilterAdaptationSSE2()
172 const __m128 e_fft_re = _mm_loadu_ps(&e_fft[0][j]); in FilterAdaptationSSE2()
173 const __m128 e_fft_im = _mm_loadu_ps(&e_fft[1][j]); in FilterAdaptationSSE2()
193 e_fft[0][PART_LEN], in FilterAdaptationSSE2()
194 e_fft[1][PART_LEN]); in FilterAdaptationSSE2()
Daec_core_internal.h193 float e_fft[2][PART_LEN1],