Home | History | Annotate | Download | only in Tremolo

Lines Matching defs:MULT31

97 static inline ogg_int32_t MULT31(ogg_int32_t x, ogg_int32_t y) {
117 * For MULT32 and MULT31: The second argument is always a lookup table
127 static inline ogg_int32_t MULT31(ogg_int32_t x, ogg_int32_t y) {
160 { *(_x)=MULT31(_a,_t)+MULT31(_b,_v); \
161 *(_y)=MULT31(_b,_t)-MULT31(_a,_v); }
163 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \
164 *(_y)=MULT31(_b,_t)+MULT31(_a,_v); }
180 *x = MULT31(a, t) + MULT31(b, v);
181 *y = MULT31(b, t) - MULT31(a, v);
188 *x = MULT31(a, t) - MULT31(b, v);
189 *y = MULT31(b, t) + MULT31(a, v);