OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:aIm
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_mips.c
342
float*
aIm
= x_fft_buf[1] + xPos;
355
"lwc1 %[f3], 0(%[
aIm
]) \n\t"
363
"lwc1 %[f7], 4(%[
aIm
]) \n\t"
369
"addiu %[
aIm
], %[
aIm
], 8 \n\t"
381
"addiu %[
aIm
], %[
aIm
], 8 \n\t"
408
"lwc1 %[f3], 0(%[
aIm
]) \n\t"
434
[
aIm
] "+r" (
aIm
), [bRe] "+r" (bRe), [bIm] "+r" (bIm)
[
all
...]
aec_core_neon.c
29
__inline static float MulRe(float aRe, float
aIm
, float bRe, float bIm) {
30
return aRe * bRe -
aIm
* bIm;
33
__inline static float MulIm(float aRe, float
aIm
, float bRe, float bIm) {
34
return aRe * bIm +
aIm
* bRe;
214
// re(conjugate(a) * b) = aRe * bRe +
aIm
* bIm
215
// im(conjugate(a) * b)= aRe * bIm -
aIm
* bRe
aec_core_sse2.c
24
__inline static float MulRe(float aRe, float
aIm
, float bRe, float bIm) {
25
return aRe * bRe -
aIm
* bIm;
28
__inline static float MulIm(float aRe, float
aIm
, float bRe, float bIm) {
29
return aRe * bIm +
aIm
* bRe;
175
// re(conjugate(a) * b) = aRe * bRe +
aIm
* bIm
176
// im(conjugate(a) * b)= aRe * bIm -
aIm
* bRe
aec_core.c
141
__inline static float MulRe(float aRe, float
aIm
, float bRe, float bIm) {
142
return aRe * bRe -
aIm
* bIm;
145
__inline static float MulIm(float aRe, float
aIm
, float bRe, float bIm) {
146
return aRe * bIm +
aIm
* bRe;
[
all
...]
Completed in 73 milliseconds