OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wfBuf
(Results
1 - 4
of
4
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_internal.h
77
float
wfBuf
[2][kExtendedNumPartitions * PART_LEN1]; // filter fft
aec_core_neon.c
472
const float32x4_t vec_wfBuf0 = vld1q_f32(&aec->
wfBuf
[0][pos + j]);
473
const float32x4_t vec_wfBuf1 = vld1q_f32(&aec->
wfBuf
[1][pos + j]);
489
wfEn += aec->
wfBuf
[0][pos + j] * aec->
wfBuf
[0][pos + j] +
490
aec->
wfBuf
[1][pos + j] * aec->
wfBuf
[1][pos + j];
aec_core_sse2.c
459
const __m128 vec_wfBuf0 = _mm_loadu_ps(&aec->
wfBuf
[0][pos + j]);
460
const __m128 vec_wfBuf1 = _mm_loadu_ps(&aec->
wfBuf
[1][pos + j]);
468
wfEn += aec->
wfBuf
[0][pos + j] * aec->
wfBuf
[0][pos + j] +
469
aec->
wfBuf
[1][pos + j] * aec->
wfBuf
[1][pos + j];
aec_core.c
307
wfEn += aec->
wfBuf
[0][pos + j] * aec->
wfBuf
[0][pos + j] +
308
aec->
wfBuf
[1][pos + j] * aec->
wfBuf
[1][pos + j];
[
all
...]
Completed in 457 milliseconds