Searched refs:echo_est (Results 1 – 4 of 4) sorted by relevance
/external/webrtc/webrtc/modules/audio_processing/aecm/ |
D | aecm_core_neon.c | 47 int32_t* echo_est, in WebRtcAecm_CalcLinearEnergiesNeon() argument 53 int32_t* echo_est_p = echo_est; in WebRtcAecm_CalcLinearEnergiesNeon() 110 echo_est[PART_LEN] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[PART_LEN], in WebRtcAecm_CalcLinearEnergiesNeon() 112 *echo_energy_stored += (uint32_t)echo_est[PART_LEN]; in WebRtcAecm_CalcLinearEnergiesNeon() 119 int32_t* echo_est) { in WebRtcAecm_StoreAdaptiveChannelNeon() argument 120 assert((uintptr_t)echo_est % 32 == 0); in WebRtcAecm_StoreAdaptiveChannelNeon() 146 int32_t* echo_est_p = echo_est; in WebRtcAecm_StoreAdaptiveChannelNeon() 172 echo_est[PART_LEN] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[PART_LEN], in WebRtcAecm_StoreAdaptiveChannelNeon()
|
D | aecm_core.h | 394 int32_t* echo_est); 406 int32_t* echo_est, 413 int32_t* echo_est); 421 int32_t* echo_est, 428 int32_t* echo_est);
|
D | aecm_core.c | 304 int32_t* echo_est, in CalcLinearEnergiesC() argument 314 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in CalcLinearEnergiesC() 318 (*echo_energy_stored) += (uint32_t)echo_est[i]; in CalcLinearEnergiesC() 324 int32_t* echo_est) { in StoreAdaptiveChannelC() argument 332 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in StoreAdaptiveChannelC() 334 echo_est[i + 1] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i + 1], in StoreAdaptiveChannelC() 336 echo_est[i + 2] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i + 2], in StoreAdaptiveChannelC() 338 echo_est[i + 3] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i + 3], in StoreAdaptiveChannelC() 341 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in StoreAdaptiveChannelC()
|
D | aecm_core_mips.c | 437 int32_t* echo_est, in WebRtcAecm_CalcLinearEnergies_mips() argument 448 int32_t* echo_p = &(echo_est[0]); in WebRtcAecm_CalcLinearEnergies_mips() 512 echo_est[PART_LEN] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[PART_LEN], in WebRtcAecm_CalcLinearEnergies_mips() 516 par3 += (uint32_t)echo_est[PART_LEN]; in WebRtcAecm_CalcLinearEnergies_mips() 526 int32_t* echo_est) { in WebRtcAecm_StoreAdaptiveChannel_mips() argument 531 int32_t* temp7 = &(echo_est[0]); in WebRtcAecm_StoreAdaptiveChannel_mips() 567 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in WebRtcAecm_StoreAdaptiveChannel_mips()
|