Lines Matching refs:time_shift
495 * u32 seq, time_mult, time_shift, index, width;
511 * time_shift = pc->time_shift;
564 * quot = (cyc >> time_shift);
565 * rem = cyc & (((u64)1 << time_shift) - 1);
567 * ((rem * time_mult) >> time_shift);
569 * Where time_offset,time_mult,time_shift and cyc are read in the
581 __u16 time_shift;
591 * cyc = (quot << time_shift) + (rem << time_shift) / time_mult;
595 * quot = cyc >> time_shift;
596 * rem = cyc & (((u64)1 << time_shift) - 1);
598 * ((rem * time_mult) >> time_shift);