Searched refs:wkr_ (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_rdft_neon.c | 200 const float32x4_t wkr_ = reverse_order_f32x4(wkrt); // 31, 30, 29, 28, in rftfsub_128_neon() local 219 const float32x4_t a_ = vmulq_f32(wkr_, xr_); in rftfsub_128_neon() 221 const float32x4_t c_ = vmulq_f32(wkr_, xi_); in rftfsub_128_neon() 280 const float32x4_t wkr_ = reverse_order_f32x4(wkrt); // 31, 30, 29, 28, in rftbsub_128_neon() local 299 const float32x4_t a_ = vmulq_f32(wkr_, xr_); in rftbsub_128_neon() 301 const float32x4_t c_ = vmulq_f32(wkr_, xi_); in rftbsub_128_neon()
|
D | aec_rdft_sse2.c | 256 const __m128 wkr_ = in rftfsub_128_SSE2() local 280 const __m128 a_ = _mm_mul_ps(wkr_, xr_); in rftfsub_128_SSE2() 282 const __m128 c_ = _mm_mul_ps(wkr_, xi_); in rftfsub_128_SSE2() 347 const __m128 wkr_ = in rftbsub_128_SSE2() local 371 const __m128 a_ = _mm_mul_ps(wkr_, xr_); in rftbsub_128_SSE2() 373 const __m128 c_ = _mm_mul_ps(wkr_, xi_); in rftbsub_128_SSE2()
|