HomeSort by relevance Sort by last modified time
    Searched refs:efw (Results 1 - 6 of 6) sorted by null

  /external/webrtc/src/modules/audio_processing/aec/
aec_core.c 115 static void ComfortNoise(aec_t *aec, float efw[2][PART_LEN1],
360 float efw[2][PART_LEN1]) {
371 efw[0][i] *= hNl[i];
372 efw[1][i] *= hNl[i];
376 efw[1][i] *= -1;
854 float efw[2][PART_LEN1], dfw[2][PART_LEN1], xfw[2][PART_LEN1]; local
949 efw[1][0] = 0;
950 efw[1][PART_LEN] = 0;
951 efw[0][0] = fft[0];
952 efw[0][PART_LEN] = fft[1]
    [all...]
aec_core_sse2.c 346 float efw[2][PART_LEN1]) {
379 __m128 vec_efw_re = _mm_loadu_ps(&efw[0][i]);
380 __m128 vec_efw_im = _mm_loadu_ps(&efw[1][i]);
387 _mm_storeu_ps(&efw[0][i], vec_efw_re);
388 _mm_storeu_ps(&efw[1][i], vec_efw_im);
401 efw[0][i] *= hNl[i];
402 efw[1][i] *= hNl[i];
406 efw[1][i] *= -1;
aec_core.h 164 (aec_t *aec, float hNl[PART_LEN1], const float hNlFb, float efw[2][PART_LEN1]);
  /external/webrtc/src/modules/audio_processing/aecm/
aecm_core_neon.c 91 complex16_t* efw,
100 __asm__("vld2.16 {d20, d21}, [%0, :128]" : : "r"(&(efw[i].real)) : "q10");
110 fft[PART_LEN2] = efw[PART_LEN].real;
111 fft[PART_LEN2 + 1] = -efw[PART_LEN].imag;
aecm_core.c 401 complex16_t* efw,
412 fft[j] = efw[i].real;
415 fft[PART_LEN4 - j] = efw[i].real;
416 fft[j + 1] = -efw[i].imag;
419 fft[PART_LEN4 - (j - 1)] = efw[i].imag;
421 fft[0] = efw[0].real;
422 fft[1] = -efw[0].imag;
424 fft[PART_LEN2] = efw[PART_LEN].real;
425 fft[PART_LEN2 + 1] = -efw[PART_LEN].imag;
1535 complex16_t* efw = (complex16_t*) (((uintptr_t) efw_buf + 31) & ~ 31); local
    [all...]
aecm_core.h 366 WebRtc_Word16* fft, complex16_t* efw,

Completed in 163 milliseconds