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

  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_neon.c 55 const float32x4_t x_fft_buf_re = vld1q_f32(&x_fft_buf[0][xPos + j]); local
61 const float32x4_t a = vmulq_f32(x_fft_buf_re, h_fft_buf_re);
63 const float32x4_t c = vmulq_f32(x_fft_buf_re, h_fft_buf_im);
209 const float32x4_t x_fft_buf_re = vld1q_f32(&x_fft_buf[0][xPos + j]); local
216 const float32x4_t a = vmulq_f32(x_fft_buf_re, e_fft_re);
218 const float32x4_t c = vmulq_f32(x_fft_buf_re, e_fft_im);
aec_core_sse2.c 51 const __m128 x_fft_buf_re = _mm_loadu_ps(&x_fft_buf[0][xPos + j]); local
57 const __m128 a = _mm_mul_ps(x_fft_buf_re, h_fft_buf_re);
59 const __m128 c = _mm_mul_ps(x_fft_buf_re, h_fft_buf_im);
170 const __m128 x_fft_buf_re = _mm_loadu_ps(&x_fft_buf[0][xPos + j]); local
177 const __m128 a = _mm_mul_ps(x_fft_buf_re, e_fft_re);
179 const __m128 c = _mm_mul_ps(x_fft_buf_re, e_fft_im);

Completed in 166 milliseconds