Searched refs:bIm (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_core_mips.c | 344 float* bIm = h_fft_buf[1] + pos; in WebRtcAec_FilterFar_mips() local 434 [aIm] "+r" (aIm), [bRe] "+r" (bRe), [bIm] "+r" (bIm), in WebRtcAec_FilterFar_mips() 462 float* bIm = e_fft[1]; in WebRtcAec_FilterAdaptation_mips() local 532 [bRe] "+r" (bRe), [bIm] "+r" (bIm), [fft_tmp] "=&r" (fft_tmp), in WebRtcAec_FilterAdaptation_mips()
|
D | aec_core_neon.c | 29 __inline static float MulRe(float aRe, float aIm, float bRe, float bIm) { in MulRe() argument 30 return aRe * bRe - aIm * bIm; in MulRe() 33 __inline static float MulIm(float aRe, float aIm, float bRe, float bIm) { in MulIm() argument 34 return aRe * bIm + aIm * bRe; in MulIm()
|
D | aec_core_sse2.c | 24 __inline static float MulRe(float aRe, float aIm, float bRe, float bIm) { in MulRe() argument 25 return aRe * bRe - aIm * bIm; in MulRe() 28 __inline static float MulIm(float aRe, float aIm, float bRe, float bIm) { in MulIm() argument 29 return aRe * bIm + aIm * bRe; in MulIm()
|
D | aec_core.c | 141 __inline static float MulRe(float aRe, float aIm, float bRe, float bIm) { in MulRe() argument 142 return aRe * bRe - aIm * bIm; in MulRe() 145 __inline static float MulIm(float aRe, float aIm, float bRe, float bIm) { in MulIm() argument 146 return aRe * bIm + aIm * bRe; in MulIm()
|