Searched refs:temp3W32 (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/common_audio/signal_processing/ |
D | levinson_durbin.c | 39 int32_t temp1W32, temp2W32, temp3W32; in WebRtcSpl_LevinsonDurbin() local 59 temp3W32 = WEBRTC_SPL_ABS_W32(temp2W32); // abs R[1] in WebRtcSpl_LevinsonDurbin() 60 temp1W32 = WebRtcSpl_DivW32HiLow(temp3W32, R_hi[0], R_low[0]); // abs(R[1])/R[0] in Q31 in WebRtcSpl_LevinsonDurbin() 129 temp3W32 = WebRtcSpl_DivW32HiLow(temp2W32, Alpha_hi, Alpha_low); // abs(temp1W32)/Alpha in WebRtcSpl_LevinsonDurbin() 134 temp3W32 = -temp3W32; in WebRtcSpl_LevinsonDurbin() 138 norm = WebRtcSpl_NormW32(temp3W32); in WebRtcSpl_LevinsonDurbin() 139 if ((Alpha_exp <= norm) || (temp3W32 == 0)) in WebRtcSpl_LevinsonDurbin() 141 temp3W32 = temp3W32 * (1 << Alpha_exp); in WebRtcSpl_LevinsonDurbin() 144 if (temp3W32 > 0) in WebRtcSpl_LevinsonDurbin() 146 temp3W32 = (int32_t)0x7fffffffL; in WebRtcSpl_LevinsonDurbin() [all …]
|
/external/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | lpc_masking_model.c | 84 int32_t temp1W32, temp2W32, temp3W32; in WebRtcSpl_LevinsonW32_JSK() local 101 temp3W32 = WEBRTC_SPL_ABS_W32(temp2W32); /* abs R[1] */ in WebRtcSpl_LevinsonW32_JSK() 102 temp1W32 = WebRtcSpl_DivW32HiLow(temp3W32, R_hi[0], R_low[0]); /* abs(R[1])/R[0] in Q31 */ in WebRtcSpl_LevinsonW32_JSK() 171 temp3W32 = WebRtcSpl_DivW32HiLow(temp2W32, Alpha_hi, Alpha_low); /* abs(temp1W32)/Alpha */ in WebRtcSpl_LevinsonW32_JSK() 175 temp3W32 = -temp3W32; in WebRtcSpl_LevinsonW32_JSK() 179 norm = WebRtcSpl_NormW32(temp3W32); in WebRtcSpl_LevinsonW32_JSK() 180 if ((Alpha_exp <= norm)||(temp3W32==0)) { in WebRtcSpl_LevinsonW32_JSK() 181 temp3W32 <<= Alpha_exp; in WebRtcSpl_LevinsonW32_JSK() 183 if (temp3W32 > 0) in WebRtcSpl_LevinsonW32_JSK() 185 temp3W32 = (int32_t)0x7fffffffL; in WebRtcSpl_LevinsonW32_JSK() [all …]
|