HomeSort by relevance Sort by last modified time
    Searched full:tmp16_1 (Results 1 - 5 of 5) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
pitch_estimator.c 38 int16_t tmp16_1, tmp16_2; local
41 tmp16_1 = -(x >> 10);
42 if(tmp16_1>0)
43 return tmp16_2 >> tmp16_1;
45 return tmp16_2 << -tmp16_1;
56 int16_t t16, tmp16, tmp16_1; local
83 tmp16_1 = (int16_t)(t16 * t16); /* Q8*Q8=Q16 */
84 tmp16_1 >>= 2; /* Q16>>2 = Q14 */
86 tmp16 = tmp16_1-t16;
90 tmp16 = 16384-tmp16_1; /* 1 in Q14 - Q14 *
    [all...]
lpc_masking_model.c 365 int16_t tmp16_1, tmp16_2; local
413 tmp16_1 = ((uint16_t)(tmp16 ^ 0xFFFF) >> 10) - 3; /* Gives result in Q14 */
414 if (tmp16_1<0)
415 expPg = -(tmp16_2 << -tmp16_1);
417 expPg = -(tmp16_2 >> tmp16_1);
427 tmp16_1 = ((uint16_t)(tmp16 ^ 0xFFFF) >> 10) - 3; /* Gives result in Q14 */
428 if (tmp16_1<0)
429 expPg = tmp16_2 << -tmp16_1;
431 expPg = tmp16_2 >> tmp16_1;
443 int16_t tmp16_1, tmp16_2 local
    [all...]
decode_plc.c 106 int16_t tmp16_1, tmp16_2; local
109 tmp16_1 = -(x >> 10);
110 if(tmp16_1>0)
111 return tmp16_2 >> tmp16_1;
113 return tmp16_2 << -tmp16_1;
  /external/webrtc/webrtc/common_audio/vad/
vad_sp.c 31 int16_t tmp16_1 = 0, tmp16_2 = 0; local
41 tmp16_1 = (int16_t) ((tmp32_1 >> 1) +
43 *signal_out = tmp16_1;
44 tmp32_1 = (int32_t)(*signal_in++) - ((kAllPassCoefsQ13[0] * tmp16_1) >> 12);
  /external/webrtc/webrtc/modules/audio_processing/ns/
nsx_core_neon.c 238 // tmp16_1 = (Word16)(tmp16>>2);
241 // inst->noiseEstLogQuantile[offset+i] + tmp16_1;
247 // tmp16_1 = (Word16)(tmp16>>1);
250 // tmp16_2 = (int16_t)((tmp16_1 * 3) >> 1);
254 // tmp16_2 = (int16_t)((tmp16_1 * 3) >> 1);
274 // tmp16_1 + tmp16_2

Completed in 284 milliseconds