Lines Matching refs:opus_int32

50     printf("ops_count = %d \n ", (opus_int32)ops_count);  in silk_PrintCount()
54 static OPUS_INLINE opus_int32 silk_MUL(opus_int32 a32, opus_int32 b32){ in silk_MUL()
55 opus_int32 ret; in silk_MUL()
69 static OPUS_INLINE opus_int32 silk_MLA(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_MLA()
70 opus_int32 ret; in silk_MLA()
77 static OPUS_INLINE opus_int32 silk_MLA_uint(opus_uint32 a32, opus_uint32 b32, opus_uint32 c32){ in silk_MLA_uint()
85 static OPUS_INLINE opus_int32 silk_SMULWB(opus_int32 a32, opus_int32 b32){ in silk_SMULWB()
86 opus_int32 ret; in silk_SMULWB()
88 …ret = (a32 >> 16) * (opus_int32)((opus_int16)b32) + (((a32 & 0x0000FFFF) * (opus_int32)((opus_int1… in silk_SMULWB()
92 static OPUS_INLINE opus_int32 silk_SMLAWB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWB()
93 opus_int32 ret; in silk_SMLAWB()
95 …ret = ((a32) + ((((b32) >> 16) * (opus_int32)((opus_int16)(c32))) + ((((b32) & 0x0000FFFF) * (opus… in silk_SMLAWB()
100 static OPUS_INLINE opus_int32 silk_SMULWT(opus_int32 a32, opus_int32 b32){ in silk_SMULWT()
101 opus_int32 ret; in silk_SMULWT()
107 static OPUS_INLINE opus_int32 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWT()
108 opus_int32 ret; in silk_SMLAWT()
115 static OPUS_INLINE opus_int32 silk_SMULBB(opus_int32 a32, opus_int32 b32){ in silk_SMULBB()
116 opus_int32 ret; in silk_SMULBB()
118 ret = (opus_int32)((opus_int16)a32) * (opus_int32)((opus_int16)b32); in silk_SMULBB()
122 static OPUS_INLINE opus_int32 silk_SMLABB(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLABB()
123 opus_int32 ret; in silk_SMLABB()
125 ret = a32 + (opus_int32)((opus_int16)b32) * (opus_int32)((opus_int16)c32); in silk_SMLABB()
130 static OPUS_INLINE opus_int32 silk_SMULBT(opus_int32 a32, opus_int32 b32 ){ in silk_SMULBT()
131 opus_int32 ret; in silk_SMULBT()
133 ret = ((opus_int32)((opus_int16)a32)) * (b32 >> 16); in silk_SMULBT()
138 static OPUS_INLINE opus_int32 silk_SMLABT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLABT()
139 opus_int32 ret; in silk_SMLABT()
141 ret = a32 + ((opus_int32)((opus_int16)b32)) * (c32 >> 16); in silk_SMLABT()
146 static OPUS_INLINE opus_int32 silk_SMULTT(opus_int32 a32, opus_int32 b32){ in silk_SMULTT()
147 opus_int32 ret; in silk_SMULTT()
154 static OPUS_INLINE opus_int32 silk_SMLATT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLATT()
155 opus_int32 ret; in silk_SMLATT()
182 static OPUS_INLINE opus_int64 silk_SMULL(opus_int32 a32, opus_int32 b32){ in silk_SMULL()
190 static OPUS_INLINE opus_int64 silk_SMLAL(opus_int64 a64, opus_int32 b32, opus_int32 c32){ in silk_SMLAL()
205 static OPUS_INLINE opus_int32 SigProcFIX_CLZ16(opus_int16 in16) in SigProcFIX_CLZ16()
207 opus_int32 out32 = 0; in SigProcFIX_CLZ16()
243 static OPUS_INLINE opus_int32 SigProcFIX_CLZ32(opus_int32 in32) in SigProcFIX_CLZ32()
255 static OPUS_INLINE opus_int32 silk_DIV32(opus_int32 a32, opus_int32 b32){ in silk_DIV32()
261 static OPUS_INLINE opus_int32 silk_DIV32_16(opus_int32 a32, opus_int32 b32){ in silk_DIV32_16()
284 static OPUS_INLINE opus_int32 silk_SAT32(opus_int64 a){ in silk_SAT32()
285 opus_int32 tmp; in silk_SAT32()
287 tmp = (opus_int32)((a) > silk_int32_MAX ? silk_int32_MAX : \ in silk_SAT32()
292 static OPUS_INLINE opus_int32 silk_POS_SAT32(opus_int64 a){ in silk_POS_SAT32()
293 opus_int32 tmp; in silk_POS_SAT32()
295 tmp = (opus_int32)((a) > silk_int32_MAX ? silk_int32_MAX : (a)); in silk_POS_SAT32()
315 static OPUS_INLINE opus_int32 silk_ADD_POS_SAT32(opus_int64 a, opus_int64 b){ in silk_ADD_POS_SAT32()
316 opus_int32 tmp; in silk_ADD_POS_SAT32()
318 tmp = (opus_int32)((((a)+(b)) & 0x80000000) ? silk_int32_MAX : ((a)+(b))); in silk_ADD_POS_SAT32()
323 static OPUS_INLINE opus_int8 silk_LSHIFT8(opus_int8 a, opus_int32 shift){ in silk_LSHIFT8()
330 static OPUS_INLINE opus_int16 silk_LSHIFT16(opus_int16 a, opus_int32 shift){ in silk_LSHIFT16()
337 static OPUS_INLINE opus_int32 silk_LSHIFT32(opus_int32 a, opus_int32 shift){ in silk_LSHIFT32()
338 opus_int32 ret; in silk_LSHIFT32()
350 static OPUS_INLINE opus_int32 silk_LSHIFT_ovflw(opus_int32 a, opus_int32 shift){ in silk_LSHIFT_ovflw()
356 static OPUS_INLINE opus_uint32 silk_LSHIFT_uint(opus_uint32 a, opus_int32 shift){ in silk_LSHIFT_uint()
364 static OPUS_INLINE opus_int8 silk_RSHIFT8(opus_int8 a, opus_int32 shift){ in silk_RSHIFT8()
369 static OPUS_INLINE opus_int16 silk_RSHIFT16(opus_int16 a, opus_int32 shift){ in silk_RSHIFT16()
374 static OPUS_INLINE opus_int32 silk_RSHIFT32(opus_int32 a, opus_int32 shift){ in silk_RSHIFT32()
385 static OPUS_INLINE opus_uint32 silk_RSHIFT_uint(opus_uint32 a, opus_int32 shift){ in silk_RSHIFT_uint()
391 static OPUS_INLINE opus_int32 silk_ADD_LSHIFT(opus_int32 a, opus_int32 b, opus_int32 shift){ in silk_ADD_LSHIFT()
392 opus_int32 ret; in silk_ADD_LSHIFT()
398 static OPUS_INLINE opus_int32 silk_ADD_LSHIFT32(opus_int32 a, opus_int32 b, opus_int32 shift){ in silk_ADD_LSHIFT32()
399 opus_int32 ret; in silk_ADD_LSHIFT32()
405 static OPUS_INLINE opus_uint32 silk_ADD_LSHIFT_uint(opus_uint32 a, opus_uint32 b, opus_int32 shift){ in silk_ADD_LSHIFT_uint()
412 static OPUS_INLINE opus_int32 silk_ADD_RSHIFT(opus_int32 a, opus_int32 b, opus_int32 shift){ in silk_ADD_RSHIFT()
413 opus_int32 ret; in silk_ADD_RSHIFT()
419 static OPUS_INLINE opus_int32 silk_ADD_RSHIFT32(opus_int32 a, opus_int32 b, opus_int32 shift){ in silk_ADD_RSHIFT32()
420 opus_int32 ret; in silk_ADD_RSHIFT32()
426 static OPUS_INLINE opus_uint32 silk_ADD_RSHIFT_uint(opus_uint32 a, opus_uint32 b, opus_int32 shift){ in silk_ADD_RSHIFT_uint()
433 static OPUS_INLINE opus_int32 silk_SUB_LSHIFT32(opus_int32 a, opus_int32 b, opus_int32 shift){ in silk_SUB_LSHIFT32()
434 opus_int32 ret; in silk_SUB_LSHIFT32()
440 static OPUS_INLINE opus_int32 silk_SUB_RSHIFT32(opus_int32 a, opus_int32 b, opus_int32 shift){ in silk_SUB_RSHIFT32()
441 opus_int32 ret; in silk_SUB_RSHIFT32()
448 static OPUS_INLINE opus_int32 silk_RSHIFT_ROUND(opus_int32 a, opus_int32 shift){ in silk_RSHIFT_ROUND()
449 opus_int32 ret; in silk_RSHIFT_ROUND()
456 static OPUS_INLINE opus_int64 silk_RSHIFT_ROUND64(opus_int64 a, opus_int32 shift){ in silk_RSHIFT_ROUND64()
470 static OPUS_INLINE opus_int32 silk_abs_int32(opus_int32 a){ in silk_abs_int32()
501 static OPUS_INLINE opus_int32 silk_ADD32(opus_int32 a, opus_int32 b){ in silk_ADD32()
502 opus_int32 ret; in silk_ADD32()
525 static OPUS_INLINE opus_int32 silk_SUB32(opus_int32 a, opus_int32 b){ in silk_SUB32()
526 opus_int32 ret; in silk_SUB32()
544 res = (opus_int16)silk_SAT16( silk_ADD32( (opus_int32)(a16), (b16) ) ); in silk_ADD_SAT16()
549 static OPUS_INLINE opus_int32 silk_ADD_SAT32(opus_int32 a32, opus_int32 b32){ in silk_ADD_SAT32()
550 opus_int32 res; in silk_ADD_SAT32()
573 res = (opus_int16)silk_SAT16( silk_SUB32( (opus_int32)(a16), (b16) ) ); in silk_SUB_SAT16()
578 static OPUS_INLINE opus_int32 silk_SUB_SAT32( opus_int32 a32, opus_int32 b32 ) { in silk_SUB_SAT32()
579 opus_int32 res; in silk_SUB_SAT32()
599 static OPUS_INLINE opus_int32 silk_SMULWW(opus_int32 a32, opus_int32 b32){ in silk_SMULWW()
600 opus_int32 ret; in silk_SMULWW()
607 static OPUS_INLINE opus_int32 silk_SMLAWW(opus_int32 a32, opus_int32 b32, opus_int32 c32){ in silk_SMLAWW()
608 opus_int32 ret; in silk_SMLAWW()
628 static OPUS_INLINE opus_int32 silk_min_32(opus_int32 a, opus_int32 b) in silk_min_32()
654 static OPUS_INLINE opus_int32 silk_max_32(opus_int32 a, opus_int32 b) in silk_max_32()
694 static OPUS_INLINE opus_int32 silk_LIMIT_32(opus_int32 a, opus_int32 limit1, opus_int32 limit2) in silk_LIMIT_32()
696 opus_int32 ret; in silk_LIMIT_32()