• Home
  • Raw
  • Download

Lines Matching refs:opus_int16

88 …ret = (a32 >> 16) * (opus_int32)((opus_int16)b32) + (((a32 & 0x0000FFFF) * (opus_int32)((opus_int1…  in silk_SMULWB()
95 …((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus_int32… in silk_SMLAWB()
118 ret = (opus_int32)((opus_int16)a32) * (opus_int32)((opus_int16)b32); in silk_SMULBB()
125 ret = a32 + (opus_int32)((opus_int16)b32) * (opus_int32)((opus_int16)c32); in silk_SMLABB()
133 ret = ((opus_int32)((opus_int16)a32)) * (b32 >> 16); in silk_SMULBT()
141 ret = a32 + ((opus_int32)((opus_int16)b32)) * (c32 >> 16); in silk_SMLABT()
197 static OPUS_INLINE opus_int64 silk_SMLALBB(opus_int64 a64, opus_int16 b16, opus_int16 c16){ in silk_SMLALBB()
205 static OPUS_INLINE opus_int32 SigProcFIX_CLZ16(opus_int16 in16) in SigProcFIX_CLZ16()
248 return SigProcFIX_CLZ16((opus_int16)(in32 >> 16)); in SigProcFIX_CLZ32()
250 return SigProcFIX_CLZ16((opus_int16)in32) + 16; in SigProcFIX_CLZ32()
276 static OPUS_INLINE opus_int16 silk_SAT16(opus_int64 a){ in silk_SAT16()
277 opus_int16 tmp; in silk_SAT16()
279 tmp = (opus_int16)((a) > silk_int16_MAX ? silk_int16_MAX : \ in silk_SAT16()
307 static OPUS_INLINE opus_int16 silk_ADD_POS_SAT16(opus_int64 a, opus_int64 b){ in silk_ADD_POS_SAT16()
308 opus_int16 tmp; in silk_ADD_POS_SAT16()
310 tmp = (opus_int16)((((a)+(b)) & 0x8000) ? silk_int16_MAX : ((a)+(b))); in silk_ADD_POS_SAT16()
330 static OPUS_INLINE opus_int16 silk_LSHIFT16(opus_int16 a, opus_int32 shift){ in silk_LSHIFT16()
331 opus_int16 ret; in silk_LSHIFT16()
369 static OPUS_INLINE opus_int16 silk_RSHIFT16(opus_int16 a, opus_int32 shift){ in silk_RSHIFT16()
493 static OPUS_INLINE opus_int16 silk_ADD16(opus_int16 a, opus_int16 b){ in silk_ADD16()
494 opus_int16 ret; in silk_ADD16()
517 static OPUS_INLINE opus_int16 silk_SUB16(opus_int16 a, opus_int16 b){ in silk_SUB16()
518 opus_int16 ret; in silk_SUB16()
541 static OPUS_INLINE opus_int16 silk_ADD_SAT16( opus_int16 a16, opus_int16 b16 ) { in silk_ADD_SAT16()
542 opus_int16 res; in silk_ADD_SAT16()
544 res = (opus_int16)silk_SAT16( silk_ADD32( (opus_int32)(a16), (b16) ) ); in silk_ADD_SAT16()
569 static OPUS_INLINE opus_int16 silk_SUB_SAT16( opus_int16 a16, opus_int16 b16 ) { in silk_SUB_SAT16()
570 opus_int16 res; in silk_SUB_SAT16()
573 res = (opus_int16)silk_SAT16( silk_SUB32( (opus_int32)(a16), (b16) ) ); in silk_SUB_SAT16()
622 static OPUS_INLINE opus_int16 silk_min_16(opus_int16 a, opus_int16 b) in silk_min_16()
648 static OPUS_INLINE opus_int16 silk_max_16(opus_int16 a, opus_int16 b) in silk_max_16()
681 static OPUS_INLINE opus_int16 silk_LIMIT_16(opus_int16 a, opus_int16 limit1, opus_int16 limit2) in silk_LIMIT_16()
683 opus_int16 ret; in silk_LIMIT_16()