OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:x_fft_buf_im
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_neon.c
56
const float32x4_t
x_fft_buf_im
= vld1q_f32(&x_fft_buf[1][xPos + j]);
local
62
const float32x4_t e = vmlsq_f32(a,
x_fft_buf_im
, h_fft_buf_im);
64
const float32x4_t f = vmlaq_f32(c,
x_fft_buf_im
, h_fft_buf_re);
210
const float32x4_t
x_fft_buf_im
= vld1q_f32(&x_fft_buf[1][xPos + j]);
local
217
const float32x4_t e = vmlaq_f32(a,
x_fft_buf_im
, e_fft_im);
219
const float32x4_t f = vmlsq_f32(c,
x_fft_buf_im
, e_fft_re);
aec_core_sse2.c
52
const __m128
x_fft_buf_im
= _mm_loadu_ps(&x_fft_buf[1][xPos + j]);
local
58
const __m128 b = _mm_mul_ps(
x_fft_buf_im
, h_fft_buf_im);
60
const __m128 d = _mm_mul_ps(
x_fft_buf_im
, h_fft_buf_re);
171
const __m128
x_fft_buf_im
= _mm_loadu_ps(&x_fft_buf[1][xPos + j]);
local
178
const __m128 b = _mm_mul_ps(
x_fft_buf_im
, e_fft_im);
180
const __m128 d = _mm_mul_ps(
x_fft_buf_im
, e_fft_re);
Completed in 75 milliseconds