Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_processing/aecm/
Daecm_core_neon.c192 WebRtc_Word32* echo_est, in CalcLinearEnergiesNeon() argument
218 __asm__("vst1.32 {d20, d21, d22, d23}, [%0, :256]" : : "r"(&echo_est[i]): in CalcLinearEnergiesNeon()
247 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], far_spectrum[i]); in CalcLinearEnergiesNeon()
248 *echo_energy_stored = echo_energy_stored_r + (WebRtc_UWord32)echo_est[i]; in CalcLinearEnergiesNeon()
256 WebRtc_Word32* echo_est) { in StoreAdaptiveChannelNeon() argument
270 "r"(&echo_est[i]) : "q10", "q11"); in StoreAdaptiveChannelNeon()
273 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], far_spectrum[i]); in StoreAdaptiveChannelNeon()
Daecm_core.c482 WebRtc_Word32* echo_est, in CalcLinearEnergiesC() argument
493 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in CalcLinearEnergiesC()
498 (*echo_energy_stored) += (WebRtc_UWord32)echo_est[i]; in CalcLinearEnergiesC()
504 WebRtc_Word32* echo_est) in StoreAdaptiveChannelC() argument
513 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in StoreAdaptiveChannelC()
515 echo_est[i + 1] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i + 1], in StoreAdaptiveChannelC()
517 echo_est[i + 2] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i + 2], in StoreAdaptiveChannelC()
519 echo_est[i + 3] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i + 3], in StoreAdaptiveChannelC()
522 echo_est[i] = WEBRTC_SPL_MUL_16_U16(aecm->channelStored[i], in StoreAdaptiveChannelC()
Daecm_core.h351 WebRtc_Word32* echo_est);