Searched refs:vec_sd (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_core_neon.c | 532 float32x4_t vec_sd = vmulq_n_f32(vld1q_f32(&aec->sd[i]), ptrGCoh[0]); in SmoothedPSD() local 543 vec_sd = vmlaq_n_f32(vec_sd, vec_dfw_sumsq, ptrGCoh[1]); in SmoothedPSD() 547 vst1q_f32(&aec->sd[i], vec_sd); in SmoothedPSD() 577 vec_sdSum = vaddq_f32(vec_sdSum, vec_sd); in SmoothedPSD() 692 const float32x4_t vec_sd = vld1q_f32(&aec->sd[i]); in SubbandCoherenceNEON() local 695 const float32x4_t vec_sdse = vmlaq_f32(vec_1eminus10, vec_sd, vec_se); in SubbandCoherenceNEON() 696 const float32x4_t vec_sdsx = vmlaq_f32(vec_1eminus10, vec_sd, vec_sx); in SubbandCoherenceNEON()
|
D | aec_core_sse2.c | 513 __m128 vec_sd = _mm_mul_ps(_mm_loadu_ps(&aec->sd[i]), vec_GCoh0); in SmoothedPSD() local 523 vec_sd = _mm_add_ps(vec_sd, _mm_mul_ps(vec_dfw_sumsq, vec_GCoh1)); in SmoothedPSD() 526 _mm_storeu_ps(&aec->sd[i], vec_sd); in SmoothedPSD() 572 vec_sdSum = _mm_add_ps(vec_sdSum, vec_sd); in SmoothedPSD() 678 const __m128 vec_sd = _mm_loadu_ps(&aec->sd[i]); in SubbandCoherenceSSE2() local 682 _mm_mul_ps(vec_sd, vec_se)); in SubbandCoherenceSSE2() 684 _mm_mul_ps(vec_sd, vec_sx)); in SubbandCoherenceSSE2()
|