Home | History | Annotate | Download | only in linux

Lines Matching defs:time_shift

366 	 *   u32 seq, time_mult, time_shift, idx, width;
382 * time_shift = pc->time_shift;
434 * quot = (cyc >> time_shift);
435 * rem = cyc & ((1 << time_shift) - 1);
437 * ((rem * time_mult) >> time_shift);
439 * Where time_offset,time_mult,time_shift and cyc are read in the
451 __u16 time_shift;
461 * cyc = (quot << time_shift) + (rem << time_shift) / time_mult;
465 * quot = cyc >> time_shift;
466 * rem = cyc & ((1 << time_shift) - 1);
468 * ((rem * time_mult) >> time_shift);