Lines Matching refs:time_shift
574 * u32 seq, time_mult, time_shift, index, width;
590 * time_shift = pc->time_shift;
643 * quot = (cyc >> time_shift);
644 * rem = cyc & (((u64)1 << time_shift) - 1);
646 * ((rem * time_mult) >> time_shift);
648 * Where time_offset,time_mult,time_shift and cyc are read in the
660 __u16 time_shift;
670 * cyc = (quot << time_shift) + (rem << time_shift) / time_mult;
674 * quot = cyc >> time_shift;
675 * rem = cyc & (((u64)1 << time_shift) - 1);
677 * ((rem * time_mult) >> time_shift);