Home
last modified time | relevance | path

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

/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Dpitch_filter_c.c34 WebRtc_Word32 tmpW32 = 0; in WebRtcIsacfix_PitchFilterCore() local
38 tmpW32 += WEBRTC_SPL_MUL_16_16(ubufQQpos2[*index2 + j], coefficient[j]); in WebRtcIsacfix_PitchFilterCore()
42 tmpW32 = WEBRTC_SPL_SAT(536862719, tmpW32, -536879104); in WebRtcIsacfix_PitchFilterCore()
43 tmpW32 += 8192; in WebRtcIsacfix_PitchFilterCore()
44 tmpW16 = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmpW32, 14); in WebRtcIsacfix_PitchFilterCore()
53 tmpW32 = 0; in WebRtcIsacfix_PitchFilterCore()
57 tmpW32 += WEBRTC_SPL_MUL_16_16(inputState[j], kDampFilter[j]); in WebRtcIsacfix_PitchFilterCore()
61 tmpW32 = WEBRTC_SPL_SAT(1073725439, tmpW32, -1073758208); in WebRtcIsacfix_PitchFilterCore()
62 tmpW32 += 16384; in WebRtcIsacfix_PitchFilterCore()
63 tmpW16 = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmpW32, 15); in WebRtcIsacfix_PitchFilterCore()
[all …]
Dpitch_filter.c87 WebRtc_Word32 tmpW32; in WebRtcIsacfix_PitchFilter() local
144 tmpW32 = WEBRTC_SPL_LSHIFT_W32(indW32, 7); in WebRtcIsacfix_PitchFilter()
145 tmpW32 -= curLagQ7; in WebRtcIsacfix_PitchFilter()
146 frcQQ = WEBRTC_SPL_RSHIFT_W32(tmpW32, 4); in WebRtcIsacfix_PitchFilter()
186 WebRtc_Word32 tmpW32, tmp2W32, csum1QQ, esumxQQ; in WebRtcIsacfix_PitchFilterGains() local
234 tmpW32 = 0; in WebRtcIsacfix_PitchFilterGains()
236 tmpW32 += WEBRTC_SPL_MUL_16_16(ubufQQ[pos3QQ + m], fracoeffQQ[m]); in WebRtcIsacfix_PitchFilterGains()
242 tmp2W32 = WEBRTC_SPL_MUL_16_32_RSFT14(indatQ0[ind], tmpW32); in WebRtcIsacfix_PitchFilterGains()
243 tmpW32 += 8192; in WebRtcIsacfix_PitchFilterGains()
244 tmpW16 = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmpW32, 14); in WebRtcIsacfix_PitchFilterGains()
[all …]
Dpitch_filter_armv6.S65 @ r2: tmpW32
/external/webrtc/src/common_audio/signal_processing/
Ddivision_operations.c104 WebRtc_Word32 tmpW32; in WebRtcSpl_DivW32HiLow() local
110 tmpW32 = (WEBRTC_SPL_MUL_16_16(den_hi, approx) << 1) in WebRtcSpl_DivW32HiLow()
114 tmpW32 = (WebRtc_Word32)0x7fffffffL - tmpW32; // result in Q30 (tmpW32 = 2.0-(den*approx)) in WebRtcSpl_DivW32HiLow()
117 tmp_hi = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmpW32, 16); in WebRtcSpl_DivW32HiLow()
118 tmp_low = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32((tmpW32 in WebRtcSpl_DivW32HiLow()
122 tmpW32 = ((WEBRTC_SPL_MUL_16_16(tmp_hi, approx) + (WEBRTC_SPL_MUL_16_16(tmp_low, approx) in WebRtcSpl_DivW32HiLow()
126 tmp_hi = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmpW32, 16); in WebRtcSpl_DivW32HiLow()
127 tmp_low = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32((tmpW32 in WebRtcSpl_DivW32HiLow()
137 tmpW32 = (WEBRTC_SPL_MUL_16_16(num_hi, tmp_hi) + (WEBRTC_SPL_MUL_16_16(num_hi, tmp_low) in WebRtcSpl_DivW32HiLow()
141 tmpW32 = WEBRTC_SPL_LSHIFT_W32(tmpW32, 3); in WebRtcSpl_DivW32HiLow()
[all …]
Dvector_scaling_operations.c118 WebRtc_Word32 tmpW32; in WebRtcSpl_ScaleVectorWithSat() local
127 tmpW32 = WEBRTC_SPL_MUL_16_16_RSFT(*inptr++, gain, right_shifts); in WebRtcSpl_ScaleVectorWithSat()
128 (*outptr++) = WebRtcSpl_SatW32ToW16(tmpW32); in WebRtcSpl_ScaleVectorWithSat()