Home | History | Annotate | Download | only in Tremolo

Lines Matching refs:shift

201     ogg_int32_t qexp=0,shift;
237 if(!(shift=MLOOP_1[(pi|qi)>>25]))
238 if(!(shift=MLOOP_2[(pi|qi)>>19]))
239 shift=MLOOP_3[(pi|qi)>>16];
241 qi=(qi>>shift)*labs(ilsp[j-1]-wi);
242 pi=(pi>>shift)*labs(ilsp[j]-wi);
243 qexp+=shift;
245 if(!(shift=MLOOP_1[(pi|qi)>>25]))
246 if(!(shift=MLOOP_2[(pi|qi)>>19]))
247 shift=MLOOP_3[(pi|qi)>>16];
254 qi=(qi>>shift)*labs(ilsp[j-1]-wi);
255 pi=(pi>>shift)<<14;
256 qexp+=shift;
258 if(!(shift=MLOOP_1[(pi|qi)>>25]))
259 if(!(shift=MLOOP_2[(pi|qi)>>19]))
260 shift=MLOOP_3[(pi|qi)>>16];
262 pi>>=shift;
263 qi>>=shift;
264 qexp+=shift-14*((m+1)>>1);
279 pi>>=shift;
280 qi>>=shift;
281 qexp+=shift-7*m;
296 need at most one right shift or a number of left shifts */