HomeSort by relevance Sort by last modified time
    Searched defs:efw (Results 1 - 3 of 3) 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.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 811 milliseconds