• Home
  • Raw
  • Download

Lines Matching refs:opus_int32

44 #define silk_SMULWB(a32, b32)            ((opus_int32)(((a32) * (opus_int64)((opus_int16)(b32))) >>…
46 …(a32, b32) ((((a32) >> 16) * (opus_int32)((opus_int16)(b32))) + ((((a32) & 0x0000FFFF) …
51 #define silk_SMLAWB(a32, b32, c32) ((opus_int32)((a32) + (((b32) * (opus_int64)((opus_int16)(…
53 …, c32) ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) …
58 #define silk_SMULWT(a32, b32) ((opus_int32)(((a32) * (opus_int64)((b32) >> 16)) >> 16))
65 #define silk_SMLAWT(a32, b32, c32) ((opus_int32)((a32) + (((b32) * ((opus_int64)(c32) >> 16))…
71 #define silk_SMULBB(a32, b32) ((opus_int32)((opus_int16)(a32)) * (opus_int32)((opus_int1…
74 #define silk_SMLABB(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * (opus_int32)(…
77 #define silk_SMULBT(a32, b32) ((opus_int32)((opus_int16)(a32)) * ((b32) >> 16))
80 #define silk_SMLABT(a32, b32, c32) ((a32) + ((opus_int32)((opus_int16)(b32))) * ((c32) >> 16))
87 #define silk_SMULWW(a32, b32) ((opus_int32)(((opus_int64)(a32) * (b32)) >> 16))
94 #define silk_SMLAWW(a32, b32, c32) ((opus_int32)((a32) + (((opus_int64)(b32) * (c32)) >> 16)))
101 static OPUS_INLINE opus_int32 silk_ADD_SAT32(opus_int32 a, opus_int32 b) { in silk_ADD_SAT32()
102 opus_int32 c; in silk_ADD_SAT32()
114 static OPUS_INLINE opus_int32 silk_SUB_SAT32(opus_int32 a, opus_int32 b) { in silk_SUB_SAT32()
115 opus_int32 c; in silk_SUB_SAT32()
132 static OPUS_INLINE opus_int32 silk_CLZ16(opus_int16 in16) in silk_CLZ16()
139 static OPUS_INLINE opus_int32 silk_CLZ32(opus_int32 in32) in silk_CLZ32()