HomeSort by relevance Sort by last modified time
    Searched refs:temp3W32 (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/common_audio/signal_processing/
levinson_durbin.c 37 int32_t temp1W32, temp2W32, temp3W32;
56 temp3W32 = WEBRTC_SPL_ABS_W32(temp2W32); // abs R[1]
57 temp1W32 = WebRtcSpl_DivW32HiLow(temp3W32, R_hi[0], R_low[0]); // abs(R[1])/R[0] in Q31
126 temp3W32 = WebRtcSpl_DivW32HiLow(temp2W32, Alpha_hi, Alpha_low); // abs(temp1W32)/Alpha
131 temp3W32 = -temp3W32;
135 norm = WebRtcSpl_NormW32(temp3W32);
136 if ((Alpha_exp <= norm) || (temp3W32 == 0))
138 temp3W32 = WEBRTC_SPL_LSHIFT_W32(temp3W32, Alpha_exp)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c 83 int32_t temp1W32, temp2W32, temp3W32;
100 temp3W32 = WEBRTC_SPL_ABS_W32(temp2W32); /* abs R[1] */
101 temp1W32 = WebRtcSpl_DivW32HiLow(temp3W32, R_hi[0], R_low[0]); /* abs(R[1])/R[0] in Q31 */
170 temp3W32 = WebRtcSpl_DivW32HiLow(temp2W32, Alpha_hi, Alpha_low); /* abs(temp1W32)/Alpha */
174 temp3W32 = -temp3W32;
178 norm = WebRtcSpl_NormW32(temp3W32);
179 if ((Alpha_exp <= norm)||(temp3W32==0)) {
180 temp3W32 <<= Alpha_exp;
182 if (temp3W32 > 0
    [all...]

Completed in 99 milliseconds