• Home
  • Raw
  • Download

Lines Matching refs:opus_int64

39 OPUS_EXPORT opus_int64 celt_mips=0;
41 extern opus_int64 celt_mips;
91 static OPUS_INLINE int NEG32(opus_int64 x) in NEG32()
93 opus_int64 res; in NEG32()
190 static OPUS_INLINE int SHR32(opus_int64 a, int shift) in SHR32()
192 opus_int64 res; in SHR32()
212 static OPUS_INLINE int SHL32_(opus_int64 a, int shift, char *file, int line) in SHL32_()
214 opus_int64 res; in SHL32_()
290 static OPUS_INLINE int ADD32_(opus_int64 a, opus_int64 b, char *file, int line) in ADD32_()
292 opus_int64 res; in ADD32_()
313 static OPUS_INLINE int SUB32_(opus_int64 a, opus_int64 b, char *file, int line) in SUB32_()
315 opus_int64 res; in SUB32_()
416 opus_int64 res; in MULT16_16_()
424 res = ((opus_int64)a)*b; in MULT16_16_()
439 static OPUS_INLINE int MULT16_32_QX_(int a, opus_int64 b, int Q, char *file, int line) in MULT16_32_QX_()
441 opus_int64 res; in MULT16_32_QX_()
456 res = (((opus_int64)a)*(opus_int64)b) >> Q; in MULT16_32_QX_()
472 static OPUS_INLINE int MULT16_32_PX_(int a, opus_int64 b, int Q, char *file, int line) in MULT16_32_PX_()
474 opus_int64 res; in MULT16_32_PX_()
482 if (ABS32(b)>=((opus_int64)(1)<<(15+Q))) in MULT16_32_PX_()
489 res = ((((opus_int64)a)*(opus_int64)b) + (((opus_val32)(1)<<Q)>>1))>> Q; in MULT16_32_PX_()
530 opus_int64 res; in MULT16_16_Q11_32()
538 res = ((opus_int64)a)*b; in MULT16_16_Q11_32()
552 opus_int64 res; in MULT16_16_Q13()
560 res = ((opus_int64)a)*b; in MULT16_16_Q13()
574 opus_int64 res; in MULT16_16_Q14()
582 res = ((opus_int64)a)*b; in MULT16_16_Q14()
598 opus_int64 res; in MULT16_16_Q15_()
606 res = ((opus_int64)a)*b; in MULT16_16_Q15_()
621 opus_int64 res; in MULT16_16_P13()
629 res = ((opus_int64)a)*b; in MULT16_16_P13()
651 opus_int64 res; in MULT16_16_P14()
659 res = ((opus_int64)a)*b; in MULT16_16_P14()
681 opus_int64 res; in MULT16_16_P15()
689 res = ((opus_int64)a)*b; in MULT16_16_P15()
712 static OPUS_INLINE int DIV32_16_(opus_int64 a, opus_int64 b, char *file, int line) in DIV32_16_()
714 opus_int64 res; in DIV32_16_()
747 static OPUS_INLINE int DIV32_(opus_int64 a, opus_int64 b, char *file, int line) in DIV32_()
749 opus_int64 res; in DIV32_()