Home
last modified time | relevance | path

Searched refs:ptrGCoh (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_neon.c516 const float* ptrGCoh = aec->extended_filter_enabled in SmoothedPSD() local
532 float32x4_t vec_sd = vmulq_n_f32(vld1q_f32(&aec->sd[i]), ptrGCoh[0]); in SmoothedPSD()
533 float32x4_t vec_se = vmulq_n_f32(vld1q_f32(&aec->se[i]), ptrGCoh[0]); in SmoothedPSD()
534 float32x4_t vec_sx = vmulq_n_f32(vld1q_f32(&aec->sx[i]), ptrGCoh[0]); in SmoothedPSD()
543 vec_sd = vmlaq_n_f32(vec_sd, vec_dfw_sumsq, ptrGCoh[1]); in SmoothedPSD()
544 vec_se = vmlaq_n_f32(vec_se, vec_efw_sumsq, ptrGCoh[1]); in SmoothedPSD()
545 vec_sx = vmlaq_n_f32(vec_sx, vec_xfw_sumsq, ptrGCoh[1]); in SmoothedPSD()
555 vec_sde.val[0] = vmulq_n_f32(vec_sde.val[0], ptrGCoh[0]); in SmoothedPSD()
556 vec_sde.val[1] = vmulq_n_f32(vec_sde.val[1], ptrGCoh[0]); in SmoothedPSD()
559 vec_sde.val[0] = vmlaq_n_f32(vec_sde.val[0], vec_dfwefw0011, ptrGCoh[1]); in SmoothedPSD()
[all …]
Daec_core_sse2.c495 const float* ptrGCoh = aec->extended_filter_enabled in SmoothedPSD() local
501 const __m128 vec_GCoh0 = _mm_set1_ps(ptrGCoh[0]); in SmoothedPSD()
502 const __m128 vec_GCoh1 = _mm_set1_ps(ptrGCoh[1]); in SmoothedPSD()
580 aec->sd[i] = ptrGCoh[0] * aec->sd[i] + in SmoothedPSD()
581 ptrGCoh[1] * (dfw[0][i] * dfw[0][i] + dfw[1][i] * dfw[1][i]); in SmoothedPSD()
582 aec->se[i] = ptrGCoh[0] * aec->se[i] + in SmoothedPSD()
583 ptrGCoh[1] * (efw[0][i] * efw[0][i] + efw[1][i] * efw[1][i]); in SmoothedPSD()
589 ptrGCoh[0] * aec->sx[i] + in SmoothedPSD()
590 ptrGCoh[1] * WEBRTC_SPL_MAX( in SmoothedPSD()
595 ptrGCoh[0] * aec->sde[i][0] + in SmoothedPSD()
[all …]
Daec_core.c337 const float* ptrGCoh = aec->extended_filter_enabled in SmoothedPSD() local
344 aec->sd[i] = ptrGCoh[0] * aec->sd[i] + in SmoothedPSD()
345 ptrGCoh[1] * (dfw[0][i] * dfw[0][i] + dfw[1][i] * dfw[1][i]); in SmoothedPSD()
346 aec->se[i] = ptrGCoh[0] * aec->se[i] + in SmoothedPSD()
347 ptrGCoh[1] * (efw[0][i] * efw[0][i] + efw[1][i] * efw[1][i]); in SmoothedPSD()
353 ptrGCoh[0] * aec->sx[i] + in SmoothedPSD()
354 ptrGCoh[1] * WEBRTC_SPL_MAX( in SmoothedPSD()
359 ptrGCoh[0] * aec->sde[i][0] + in SmoothedPSD()
360 ptrGCoh[1] * (dfw[0][i] * efw[0][i] + dfw[1][i] * efw[1][i]); in SmoothedPSD()
362 ptrGCoh[0] * aec->sde[i][1] + in SmoothedPSD()
[all …]