Searched refs:ef_re (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_core_sse2.c | 102 __m128 ef_re = _mm_div_ps(ef_re_base, xPowPlus); in ScaleErrorSignalSSE2() local 104 const __m128 ef_re2 = _mm_mul_ps(ef_re, ef_re); in ScaleErrorSignalSSE2() 111 __m128 ef_re_if = _mm_mul_ps(ef_re, absEfInv); in ScaleErrorSignalSSE2() 115 ef_re = _mm_andnot_ps(bigger, ef_re); in ScaleErrorSignalSSE2() 117 ef_re = _mm_or_ps(ef_re, ef_re_if); in ScaleErrorSignalSSE2() 119 ef_re = _mm_mul_ps(ef_re, kMu); in ScaleErrorSignalSSE2() 122 _mm_storeu_ps(&ef[0][i], ef_re); in ScaleErrorSignalSSE2()
|
D | aec_core_neon.c | 147 float32x4_t ef_re = vdivq_f32(ef_re_base, xPowPlus); in ScaleErrorSignalNEON() local 149 const float32x4_t ef_re2 = vmulq_f32(ef_re, ef_re); in ScaleErrorSignalNEON() 155 uint32x4_t ef_re_if = vreinterpretq_u32_f32(vmulq_f32(ef_re, absEfInv)); in ScaleErrorSignalNEON() 158 vreinterpretq_u32_f32(ef_re)); in ScaleErrorSignalNEON() 165 ef_re = vmulq_f32(vreinterpretq_f32_u32(ef_re_u32), kMu); in ScaleErrorSignalNEON() 167 vst1q_f32(&ef[0][i], ef_re); in ScaleErrorSignalNEON()
|