OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:efw
(Results
1 - 7
of
7
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aecm/
aecm_core_c.c
93
ComplexInt16*
efw
,
98
// Reuse |
efw
| for the inverse FFT output after transferring
100
int16_t* ifft_out = (int16_t*)
efw
;
104
fft[j] =
efw
[i].real;
105
fft[j + 1] = -
efw
[i].imag;
107
fft[0] =
efw
[0].real;
108
fft[1] = -
efw
[0].imag;
110
fft[PART_LEN2] =
efw
[PART_LEN].real;
111
fft[PART_LEN2 + 1] = -
efw
[PART_LEN].imag;
311
ComplexInt16*
efw
= (ComplexInt16*)(((uintptr_t)efw_buf + 31) & ~31)
local
[
all
...]
aecm_core_mips.c
204
ComplexInt16*
efw
,
212
ComplexInt16* pefw =
efw
;
281
fft[2] =
efw
[PART_LEN].real;
282
fft[3] = -
efw
[PART_LEN].imag;
824
ComplexInt16*
efw
= (ComplexInt16*)(((uint32_t)
efw
_buf + 31) & ~31);
local
[
all
...]
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_neon.c
385
float
efw
[2][PART_LEN1]) {
423
float32x4_t vec_efw_re = vld1q_f32(&
efw
[0][i]);
424
float32x4_t vec_efw_im = vld1q_f32(&
efw
[1][i]);
431
vst1q_f32(&
efw
[0][i], vec_efw_re);
432
vst1q_f32(&
efw
[1][i], vec_efw_im);
447
efw
[0][i] *= hNl[i];
448
efw
[1][i] *= hNl[i];
452
efw
[1][i] *= -1;
511
float
efw
[2][PART_LEN1],
528
const float32x4_t vec_efw0 = vld1q_f32(&
efw
[0][i])
[
all
...]
aec_core_sse2.c
372
float
efw
[2][PART_LEN1]) {
404
__m128 vec_efw_re = _mm_loadu_ps(&
efw
[0][i]);
405
__m128 vec_efw_im = _mm_loadu_ps(&
efw
[1][i]);
412
_mm_storeu_ps(&
efw
[0][i], vec_efw_re);
413
_mm_storeu_ps(&
efw
[1][i], vec_efw_im);
426
efw
[0][i] *= hNl[i];
427
efw
[1][i] *= hNl[i];
431
efw
[1][i] *= -1;
490
float
efw
[2][PART_LEN1],
509
const __m128 vec_efw0 = _mm_loadu_ps(&
efw
[0][i])
[
all
...]
aec_core_internal.h
199
float
efw
[2][PART_LEN1]);
203
float
efw
[2][PART_LEN1],
210
float
efw
[2][PART_LEN1],
aec_core_mips.c
27
float
efw
[2][PART_LEN1],
154
float* efw_ptr_0 = &
efw
[0][0];
155
float* efw_ptr_1 = &
efw
[1][0];
268
efw
[0][PART_LEN] += tmp * u[PART_LEN][0];
269
efw
[1][PART_LEN] += tmp * u[PART_LEN][1];
[
all
...]
aec_core.c
273
float
efw
[2][PART_LEN1]) {
284
efw
[0][i] *= hNl[i];
285
efw
[1][i] *= hNl[i];
289
efw
[1][i] *= -1;
332
float
efw
[2][PART_LEN1],
347
ptrGCoh[1] * (
efw
[0][i] *
efw
[0][i] +
efw
[1][i] *
efw
[1][i]);
360
ptrGCoh[1] * (dfw[0][i] *
efw
[0][i] + dfw[1][i] * efw[1][i])
1005
float
efw
[2][PART_LEN1];
local
[
all
...]
Completed in 516 milliseconds