Lines Matching refs:spx_word32_t
38 #define QCONST16(x,bits) ((spx_word16_t)(.5+(x)*(((spx_word32_t)1)<<(bits))))
39 #define QCONST32(x,bits) ((spx_word32_t)(.5+(x)*(((spx_word32_t)1)<<(bits))))
44 #define EXTEND32(x) ((spx_word32_t)(x))
60 #define SHL(a,shift) ((spx_word32_t)(a) << (shift))
67 #define ADD32(a,b) ((spx_word32_t)(a)+(spx_word32_t)(b))
68 #define SUB32(a,b) ((spx_word32_t)(a)-(spx_word32_t)(b))
75 #define MULT16_16(a,b) (((spx_word32_t)(spx_word16_t)(a))*((spx_word32_t)(spx_word16_t)(b)))
105 #define DIV32_16(a,b) ((spx_word16_t)(((spx_word32_t)(a))/((spx_word16_t)(b))))
106 #define PDIV32_16(a,b) ((spx_word16_t)(((spx_word32_t)(a)+((spx_word16_t)(b)>>1))/((spx_word16_t)(b…
107 #define DIV32(a,b) (((spx_word32_t)(a))/((spx_word32_t)(b)))
108 #define PDIV32(a,b) (((spx_word32_t)(a)+((spx_word16_t)(b)>>1))/((spx_word32_t)(b)))