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

  /external/webrtc/webrtc/common_audio/signal_processing/
levinson_durbin.c 31 int16_t A_upd_hi[SPL_LEVINSON_MAXORDER + 1], A_upd_low[SPL_LEVINSON_MAXORDER + 1];
182 A_upd_hi[j] = (int16_t)(temp1W32 >> 16);
184 (temp1W32 - ((int32_t)A_upd_hi[j] << 16)) >> 1);
191 A_upd_hi[i] = (int16_t)(temp3W32 >> 16);
193 (temp3W32 - ((int32_t)A_upd_hi[i] << 16)) >> 1);
225 A_hi[j] = A_upd_hi[j];
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c 77 int16_t A_upd_hi[LEVINSON_MAX_ORDER+1], A_upd_low[LEVINSON_MAX_ORDER+1];
220 A_upd_hi[j] = (int16_t)(temp1W32 >> 16);
221 A_upd_low[j] = (int16_t)((temp1W32 - ((int32_t)A_upd_hi[j] << 16)) >> 1);
227 A_upd_hi[i] = (int16_t)(temp3W32 >> 16);
228 A_upd_low[i] = (int16_t)((temp3W32 - ((int32_t)A_upd_hi[i] << 16)) >> 1);
260 A_hi[j] =A_upd_hi[j];

Completed in 2328 milliseconds