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

  /external/chromium_org/third_party/opus/src/silk/
sum_sqr_shift.c 43 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/libopus/silk/
sum_sqr_shift.c 43 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/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
cb_mem_energy_calc.c 35 int16_t j,shft; local
59 shft = (int16_t)WebRtcSpl_NormW32(energy);
60 *eSh_ptr++ = shft;
62 tmp = WEBRTC_SPL_LSHIFT_W32(energy, shft);
  /external/libedit/src/
vis.c 267 int iswextra, i, shft; local
280 shft = i * NBBY;
281 bmsk = (uint64_t)0xffLL << shft;
285 (uint64_t)(c & bmsk) >> shft),
358 int clen = 0, cerr = 0, error = -1, i, shft; local
494 shft = i * NBBY;
495 bmsk = (uint64_t)0xffLL << shft;
500 shft);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c 580 int shft; local
    [all...]
entropy_coding.c 392 int16_t dither1_Q7, dither2_Q7, dither_gain_Q14, shft; local
410 shft = (int16_t)(WEBRTC_SPL_RSHIFT_U32(seed, 25) & 15);
411 if (shft < 5)
417 else if (shft < 10)
445 shft = (int16_t)(WEBRTC_SPL_RSHIFT_U32(seed, 25) & 1); /* either 0 or 1 */
447 bufQ7[k + shft] = (int16_t)WEBRTC_SPL_RSHIFT_W32(WEBRTC_SPL_MUL(dither_gain_Q14, dither1_Q7) + 8192, 14);
448 bufQ7[k + 1 - shft] = 0;
1684 int16_t shft,tmp16a,tmp16c; local
1769 int16_t shft, tmp16a, tmp16b, tmp16c; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
entropy_coding.c 179 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;
    [all...]

Completed in 119 milliseconds