Searched refs:xi_ (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_rdft_neon.c | 214 const float32x4_t xi_ = vaddq_f32(a_j2_p.val[1], a_k2_p1); in rftfsub_128_neon() local 220 const float32x4_t b_ = vmulq_f32(wki_, xi_); in rftfsub_128_neon() 221 const float32x4_t c_ = vmulq_f32(wkr_, xi_); in rftfsub_128_neon() 294 const float32x4_t xi_ = vaddq_f32(a_j2_p.val[1], a_k2_p1); in rftbsub_128_neon() local 300 const float32x4_t b_ = vmulq_f32(wki_, xi_); in rftbsub_128_neon() 301 const float32x4_t c_ = vmulq_f32(wkr_, xi_); in rftbsub_128_neon()
|
D | aec_rdft_sse2.c | 275 const __m128 xi_ = _mm_add_ps(a_j2_p1, a_k2_p1); in rftfsub_128_SSE2() local 281 const __m128 b_ = _mm_mul_ps(wki_, xi_); in rftfsub_128_SSE2() 282 const __m128 c_ = _mm_mul_ps(wkr_, xi_); in rftfsub_128_SSE2() 366 const __m128 xi_ = _mm_add_ps(a_j2_p1, a_k2_p1); in rftbsub_128_SSE2() local 372 const __m128 b_ = _mm_mul_ps(wki_, xi_); in rftbsub_128_SSE2() 373 const __m128 c_ = _mm_mul_ps(wkr_, xi_); in rftbsub_128_SSE2()
|