Home | History | Annotate | Download | only in linux

Lines Matching defs:time_shift

343 	 *   u32 seq, time_mult, time_shift, idx, width;
359 * time_shift = pc->time_shift;
411 * quot = (cyc >> time_shift);
412 * rem = cyc & ((1 << time_shift) - 1);
414 * ((rem * time_mult) >> time_shift);
416 * Where time_offset,time_mult,time_shift and cyc are read in the
428 __u16 time_shift;
438 * cyc = (quot << time_shift) + (rem << time_shift) / time_mult;
442 * quot = cyc >> time_shift;
443 * rem = cyc & ((1 << time_shift) - 1);
445 * ((rem * time_mult) >> time_shift);