OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bIm
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_mips.c
344
float*
bIm
= h_fft_buf[1] + pos;
354
"lwc1 %[f2], 0(%[
bIm
]) \n\t"
358
"lwc1 %[f6], 4(%[
bIm
]) \n\t"
394
"addiu %[
bIm
], %[
bIm
], 8 \n\t"
407
"lwc1 %[f2], 0(%[
bIm
]) \n\t"
434
[aIm] "+r" (aIm), [bRe] "+r" (bRe), [
bIm
] "+r" (
bIm
),
462
float*
bIm
= e_fft[1];
475
"lwc1 %[f2], 0(%[
bIm
]) \n\t
[
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 131 milliseconds