Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/aecm/
Daecm_core_c.c116 ifft_out[i] = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in InverseFFTAndWindow()
612 efw[i].real = (int16_t)(WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].real, in WebRtcAecm_ProcessBlock()
614 efw[i].imag = (int16_t)(WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].imag, in WebRtcAecm_ProcessBlock()
623 efw[i].real = (int16_t)(WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].real, in WebRtcAecm_ProcessBlock()
625 efw[i].imag = (int16_t)(WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].imag, in WebRtcAecm_ProcessBlock()
Daecm_core_mips.c1232 (WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].real, in WebRtcAecm_ProcessBlock()
1236 (WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(dfw[i].imag, in WebRtcAecm_ProcessBlock()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dpitch_filter.c93 lagdeltaQ7 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in WebRtcIsacfix_PitchFilter()
171 lagdeltaQ7 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in WebRtcIsacfix_PitchFilterGains()
Dpitch_filter_c.c49 inputState[0] = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in WebRtcIsacfix_PitchFilterCore()
Dlpc_masking_model.c410 tmp16=(int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(kExp2,pg3,13);/* Q13*Q10>>13 => Q10*/ in WebRtcIsacfix_GetVars()
424 tmp16=(int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(kExp2,divVal,13);/* Q13*Q10>>13 => Q10*/ in WebRtcIsacfix_GetVars()
/external/webrtc/webrtc/modules/audio_processing/ns/
Dnsx_core_neon.c72 inst->qNoise = 14 - (int) WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(kExp2Const, in UpdateNoiseEstimateNeon()
325 tmp16no1 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in WebRtcNsx_NoiseEstimationNeon()
327 tmp16no2 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in WebRtcNsx_NoiseEstimationNeon()
Dnsx_core.c314 inst->qNoise = 14 - (int) WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in UpdateNoiseEstimate()
426 tmp16no1 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in NoiseEstimationC()
428 tmp16no2 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in NoiseEstimationC()
501 tmp16a = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in SynthesisUpdateC()
503 tmp32 = WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(tmp16a, gain_factor, 13); // Q0 in SynthesisUpdateC()
536 out[i] = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in AnalysisUpdateC()
Dnsx_core_c.c183 tmp16no2 += (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in WebRtcNsx_SpeechNoiseProb()
Dnsx_core_mips.c218 tmp16no2 += (int16_t)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND( in WebRtcNsx_SpeechNoiseProb()
/external/webrtc/webrtc/common_audio/signal_processing/include/
Dsignal_processing_library.h73 #define WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(a, b, c) \ macro
/external/webrtc/webrtc/common_audio/signal_processing/
Dsignal_processing_unittest.cc56 EXPECT_EQ(-12287, WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(a, b, 2)); in TEST_F()