Searched refs:xr_ (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_rdft_neon.c | 212 const float32x4_t xr_ = vsubq_f32(a_j2_p.val[0], a_k2_p0); in rftfsub_128_neon() local 219 const float32x4_t a_ = vmulq_f32(wkr_, xr_); in rftfsub_128_neon() 222 const float32x4_t d_ = vmulq_f32(wki_, xr_); in rftfsub_128_neon() 292 const float32x4_t xr_ = vsubq_f32(a_j2_p.val[0], a_k2_p0); in rftbsub_128_neon() local 299 const float32x4_t a_ = vmulq_f32(wkr_, xr_); in rftbsub_128_neon() 302 const float32x4_t d_ = vmulq_f32(wki_, xr_); in rftbsub_128_neon()
|
D | aec_rdft_sse2.c | 273 const __m128 xr_ = _mm_sub_ps(a_j2_p0, a_k2_p0); in rftfsub_128_SSE2() local 280 const __m128 a_ = _mm_mul_ps(wkr_, xr_); in rftfsub_128_SSE2() 283 const __m128 d_ = _mm_mul_ps(wki_, xr_); in rftfsub_128_SSE2() 364 const __m128 xr_ = _mm_sub_ps(a_j2_p0, a_k2_p0); in rftbsub_128_SSE2() local 371 const __m128 a_ = _mm_mul_ps(wkr_, xr_); in rftbsub_128_SSE2() 374 const __m128 d_ = _mm_mul_ps(wki_, xr_); in rftbsub_128_SSE2()
|