Lines Matching defs:MULT32
91 static inline ogg_int32_t MULT32(ogg_int32_t x, ogg_int32_t y) {
98 return MULT32(x,y)<<1;
117 * For MULT32 and MULT31: The second argument is always a lookup table
123 static inline ogg_int32_t MULT32(ogg_int32_t x, ogg_int32_t y) {
157 { *(_x)=MULT32(_a,_t)+MULT32(_b,_v); \
158 *(_y)=MULT32(_b,_t)-MULT32(_a,_v); }
172 *x = MULT32(a, t) + MULT32(b, v);
173 *y = MULT32(b, t) - MULT32(a, v);