Home
last modified time | relevance | path

Searched refs:K_low (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/webrtc/common_audio/signal_processing/
Dlevinson_durbin.c33 int16_t K_hi, K_low; in WebRtcSpl_LevinsonDurbin() local
66 K_low = (int16_t)((temp1W32 - ((int32_t)K_hi << 16)) >> 1); in WebRtcSpl_LevinsonDurbin()
79 temp1W32 = ((K_hi * K_low >> 14) + K_hi * K_hi) << 1; // = k^2 in Q31 in WebRtcSpl_LevinsonDurbin()
152 K_low = (int16_t)((temp3W32 - ((int32_t)K_hi << 16)) >> 1); in WebRtcSpl_LevinsonDurbin()
179 (K_low * A_hi[i - j] >> 15)) << 1; in WebRtcSpl_LevinsonDurbin()
197 temp1W32 = ((K_hi * K_low >> 14) + K_hi * K_hi) << 1; // K*K in Q31 in WebRtcSpl_LevinsonDurbin()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dlpc_masking_model.c79 int16_t K_hi, K_low; /* reflection coefficient in high precision */ in WebRtcSpl_LevinsonW32_JSK() local
109 K_low = (int16_t)((temp1W32 - ((int32_t)K_hi << 16)) >> 1); in WebRtcSpl_LevinsonW32_JSK()
122 temp1W32 = (((K_hi * K_low) >> 14) + K_hi * K_hi) << 1; /* = k^2 in Q31 */ in WebRtcSpl_LevinsonW32_JSK()
193 K_low = (int16_t)((temp3W32 - ((int32_t)K_hi << 16)) >> 1); in WebRtcSpl_LevinsonW32_JSK()
217 ((K_low * A_hi[i - j]) >> 15)) << 1; // temp1W32 += K*A[i-j] in Q27. in WebRtcSpl_LevinsonW32_JSK()
232 temp1W32 = (((K_hi * K_low) >> 14) + K_hi * K_hi) << 1; /* K*K in Q31 */ in WebRtcSpl_LevinsonW32_JSK()