Home
last modified time | relevance | path

Searched refs:vec_cohxd (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_neon.c700 float32x4_t vec_cohxd = vmulq_f32(vec_sxd.val[0], vec_sxd.val[0]); in SubbandCoherenceNEON() local
703 vec_cohxd = vmlaq_f32(vec_cohxd, vec_sxd.val[1], vec_sxd.val[1]); in SubbandCoherenceNEON()
704 vec_cohxd = vdivq_f32(vec_cohxd, vec_sdsx); in SubbandCoherenceNEON()
707 vst1q_f32(&cohxd[i], vec_cohxd); in SubbandCoherenceNEON()
Daec_core_sse2.c698 __m128 vec_cohxd = _mm_mul_ps(vec_sxd_0, vec_sxd_0); in SubbandCoherenceSSE2() local
701 vec_cohxd = _mm_add_ps(vec_cohxd, _mm_mul_ps(vec_sxd_1, vec_sxd_1)); in SubbandCoherenceSSE2()
702 vec_cohxd = _mm_div_ps(vec_cohxd, vec_sdsx); in SubbandCoherenceSSE2()
704 _mm_storeu_ps(&cohxd[i], vec_cohxd); in SubbandCoherenceSSE2()