Searched refs:aIm (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/src/modules/audio_processing/aec/ |
D | aec_core_sse2.c | 24 __inline static float MulRe(float aRe, float aIm, float bRe, float bIm) in MulRe() argument 26 return aRe * bRe - aIm * bIm; in MulRe() 29 __inline static float MulIm(float aRe, float aIm, float bRe, float bIm) in MulIm() argument 31 return aRe * bIm + aIm * bRe; in MulIm()
|
D | aec_core.c | 129 __inline static float MulRe(float aRe, float aIm, float bRe, float bIm) in MulRe() argument 131 return aRe * bRe - aIm * bIm; in MulRe() 134 __inline static float MulIm(float aRe, float aIm, float bRe, float bIm) in MulIm() argument 136 return aRe * bIm + aIm * bRe; in MulIm()
|