Searched defs:shft (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/opus/src/silk/
H A Dsum_sqr_shift.c43 opus_int i, shft; local
47 shft = 0;
55 shft = 2;
62 nrg = (opus_int32)silk_ADD_RSHIFT_uint( nrg, (opus_uint32)nrg_tmp, shft );
66 shft += 2;
72 nrg = (opus_int32)silk_ADD_RSHIFT_uint( nrg, nrg_tmp, shft );
78 shft += 2;
82 *shift = shft;
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dlpc_masking_model.c580 int shft; local
887 shft = 16 - sh;
888 tmp16a = (WebRtc_Word16) WEBRTC_SPL_SHIFT_W32(tmp32c, -shft); // Q(ssh-shft) (denominator)
890 tmp32b = WebRtcSpl_DivW32W16(tmp32a, tmp16a); // Q(24-ssh+shft)
891 sh = ssh-shft-7;
937 shft = 16 - sh;
938 tmp16a = (WebRtc_Word16) WEBRTC_SPL_SHIFT_W32(tmp32c, -shft); // Q(ssh-shft) (denominator)
940 tmp32b = WebRtcSpl_DivW32W16(tmp32a, tmp16a); // Q(24-ssh+shft)
[all...]
H A Dentropy_coding.c358 WebRtc_Word16 dither1_Q7, dither2_Q7, dither_gain_Q14, shft; local
376 shft = (WebRtc_Word16)(WEBRTC_SPL_RSHIFT_U32(seed, 25) & 15);
377 if (shft < 5)
383 else if (shft < 10)
411 shft = (WebRtc_Word16)(WEBRTC_SPL_RSHIFT_U32(seed, 25) & 1); /* either 0 or 1 */
413 bufQ7[k + shft] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(dither_gain_Q14, dither1_Q7) + 8192, 14);
414 bufQ7[k + 1 - shft] = 0;
1687 WebRtc_Word16 shft,tmp16a,tmp16c; local
1697 shft = -1; // StepSize=2.0;
1705 shft
1772 WebRtc_Word16 shft, tmp16a, tmp16b, tmp16c; local
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dentropy_coding.c179 int k, shft; local
198 shft = (seed >> 25) & 15;
199 if (shft < 5) {
203 } else if (shft < 10) {
225 shft = (seed >> 25) & 1; /* Either 0 or 1 */
227 bufQ7[k + shft] = (((dither_gain_Q14 * dither1_Q7) + 8192) >> 14);
228 bufQ7[k + 1 - shft] = 0;
/external/valgrind/main/helgrind/
H A Dlibhb_core.c771 Word bix, shft, mask, prep; local
774 shft = 2 * (ix & 3); /* 0, 2, 4 or 6 */
775 mask = 3 << shft;
776 prep = b2 << shft;
782 Word bix, shft; local
785 shft = 2 * (ix & 3); /* 0, 2, 4 or 6 */
786 return (arr[bix] >> shft) & 3;
/external/valgrind/main/VEX/priv/
H A Dguest_ppc_toIR.c2586 UInt shft, mask; local
2591 shft = 4*(7-fld);
2592 mask = 0xF<<shft;
2605 if (shft == 0)
2610 mkU8(toUChar( shft )));
2734 UInt shft; local
2742 shft = 4*(7-fld);
2744 shft = 4*(15-fld);
2745 mask = 0xF<<shft;
2757 if (shft
6568 UChar shft; local
[all...]

Completed in 285 milliseconds