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

  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
levinson_durbin.c 35 int16_t Alpha_hi, Alpha_low, Alpha_exp;
102 Alpha_hi = (int16_t)WEBRTC_SPL_RSHIFT_W32(temp1W32, 16);
104 - WEBRTC_SPL_LSHIFT_W32((int32_t)Alpha_hi, 16)), 1);
133 temp3W32 = WebRtcSpl_DivW32HiLow(temp2W32, Alpha_hi, Alpha_low); // abs(temp1W32)/Alpha
218 temp1W32 = ((WEBRTC_SPL_MUL_16_16(Alpha_hi, tmp_hi)
219 + (WEBRTC_SPL_MUL_16_16(Alpha_hi, tmp_low) >> 15)
227 Alpha_hi = (int16_t)WEBRTC_SPL_RSHIFT_W32(temp1W32, 16);
229 - WEBRTC_SPL_LSHIFT_W32((int32_t)Alpha_hi, 16)), 1);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c 80 int16_t Alpha_hi, Alpha_low, Alpha_exp; /* Prediction gain Alpha in high precision
142 Alpha_hi = (int16_t) WEBRTC_SPL_RSHIFT_W32(temp1W32, 16);
143 Alpha_low = (int16_t)WEBRTC_SPL_RSHIFT_W32((temp1W32 - WEBRTC_SPL_LSHIFT_W32((int32_t)Alpha_hi, 16)), 1);
174 temp3W32 = WebRtcSpl_DivW32HiLow(temp2W32, Alpha_hi, Alpha_low); /* abs(temp1W32)/Alpha */
249 temp1W32 = WEBRTC_SPL_LSHIFT_W32(( WEBRTC_SPL_MUL_16_16(Alpha_hi, tmp_hi) +
250 WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL_16_16(Alpha_hi, tmp_low), 15) +
258 Alpha_hi = (int16_t) WEBRTC_SPL_RSHIFT_W32(temp1W32, 16);
259 Alpha_low = (int16_t)WEBRTC_SPL_RSHIFT_W32((temp1W32 - WEBRTC_SPL_LSHIFT_W32((int32_t)Alpha_hi, 16)), 1);
    [all...]

Completed in 30 milliseconds