Home
last modified time | relevance | path

Searched refs:WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND (Results 1 – 5 of 5) sorted by relevance

/external/webrtc/src/modules/audio_processing/ns/
Dnsx_core_neon.c31 inst->qNoise = 14 - (int) WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(kExp2Const, in UpdateNoiseEstimateNeon()
293 tmp16no1 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in NoiseEstimationNeon()
295 tmp16no2 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in NoiseEstimationNeon()
Dnsx_core.c450 inst->qNoise = 14 - (int) WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in UpdateNoiseEstimate()
564 tmp16no1 = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in NoiseEstimationC()
566 tmp16no2 = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in NoiseEstimationC()
641 tmp16a = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in SynthesisUpdateC()
643 tmp32 = WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(tmp16a, gain_factor, 13); // Q0 in SynthesisUpdateC()
678 out[i] = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in AnalysisUpdateC()
1446 tmp16no2 += (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in WebRtcNsx_SpeechNoiseProb()
/external/webrtc/src/modules/audio_processing/aecm/
Daecm_core.c440 fft[i] = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in InverseFFTAndWindowC()
1870 efw[i].real = (WebRtc_Word16)(WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].real, in WebRtcAecm_ProcessBlock()
1872 efw[i].imag = (WebRtc_Word16)(WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].imag, in WebRtcAecm_ProcessBlock()
1881 efw[i].real = (WebRtc_Word16)(WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].real, in WebRtcAecm_ProcessBlock()
1883 efw[i].imag = (WebRtc_Word16)(WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].imag, in WebRtcAecm_ProcessBlock()
/external/webrtc/src/common_audio/signal_processing/
Dsignal_processing_unittest.cc72 EXPECT_EQ(-12287, WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(a, b, 2)); in TEST_F()
/external/webrtc/src/common_audio/signal_processing/include/
Dsignal_processing_library.h119 #define WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(a, b, c) \ macro