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

  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
entropy_coding.c 543 int16_t lft_shft; local
580 lft_shft = WebRtcSpl_NormW32(CorrQ7[0]) - 18;
582 if (lft_shft > 0) {
584 CorrQ7_norm[k] = WEBRTC_SPL_LSHIFT_W32(CorrQ7[k], lft_shft);
587 CorrQ7_norm[k] = WEBRTC_SPL_RSHIFT_W32(CorrQ7[k], -lft_shft);
611 if (lft_shft > 0)
612 nrg = WEBRTC_SPL_RSHIFT_W32(nrg, lft_shft);
614 nrg = WEBRTC_SPL_LSHIFT_W32(nrg, -lft_shft);
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
entropy_coding.c 509 WebRtc_Word16 lft_shft; local
546 lft_shft = WebRtcSpl_NormW32(CorrQ7[0]) - 18;
548 if (lft_shft > 0) {
550 CorrQ7_norm[k] = WEBRTC_SPL_LSHIFT_W32(CorrQ7[k], lft_shft);
553 CorrQ7_norm[k] = WEBRTC_SPL_RSHIFT_W32(CorrQ7[k], -lft_shft);
577 if (lft_shft > 0)
578 nrg = WEBRTC_SPL_RSHIFT_W32(nrg, lft_shft);
580 nrg = WEBRTC_SPL_LSHIFT_W32(nrg, -lft_shft);
    [all...]

Completed in 215 milliseconds