Searched refs:tmpW32 (Results 1 - 2 of 2) sorted by relevance

/external/webrtc/src/common_audio/signal_processing/
H A Ddivision_operations.c104 WebRtc_Word32 tmpW32; local
109 // tmpW32 = 1/den = approx * (2.0 - den * approx) (in Q30)
110 tmpW32 = (WEBRTC_SPL_MUL_16_16(den_hi, approx) << 1)
112 // tmpW32 = den * approx
114 tmpW32 = (WebRtc_Word32)0x7fffffffL - tmpW32; // result in Q30 (tmpW32 = 2.0-(den*approx))
116 // Store tmpW32 in hi and low format
117 tmp_hi = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmpW32, 16);
118 tmp_low = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32((tmpW32
[all...]
H A Dvector_scaling_operations.c118 WebRtc_Word32 tmpW32; local
127 tmpW32 = WEBRTC_SPL_MUL_16_16_RSFT(*inptr++, gain, right_shifts);
128 (*outptr++) = WebRtcSpl_SatW32ToW16(tmpW32);

Completed in 659 milliseconds