Home | History | Annotate | Download | only in Tremolo

Lines Matching defs:MULT31

98 static inline ogg_int32_t MULT31(ogg_int32_t x, ogg_int32_t y) {
118 * For MULT32 and MULT31: The second argument is always a lookup table
128 static inline ogg_int32_t MULT31(ogg_int32_t x, ogg_int32_t y) {
161 { *(_x)=MULT31(_a,_t)+MULT31(_b,_v); \
162 *(_y)=MULT31(_b,_t)-MULT31(_a,_v); }
164 { *(_x)=MULT31(_a,_t)-MULT31(_b,_v); \
165 *(_y)=MULT31(_b,_t)+MULT31(_a,_v); }
181 *x = MULT31(a, t) + MULT31(b, v);
182 *y = MULT31(b, t) - MULT31(a, v);
189 *x = MULT31(a, t) - MULT31(b, v);
190 *y = MULT31(b, t) + MULT31(a, v);