Searched refs:time_mult (Results 1 - 5 of 5) sorted by relevance

/external/linux-tools-perf/perf-3.12.0/tools/perf/arch/x86/util/
H A Dtsc.c16 quot = t / tc->time_mult;
17 rem = t % tc->time_mult;
19 (rem << tc->time_shift) / tc->time_mult;
28 return tc->time_zero + quot * tc->time_mult +
29 ((rem * tc->time_mult) >> tc->time_shift);
42 tc->time_mult = pc->time_mult;
H A Dtsc.h8 u32 time_mult; member in struct:perf_tsc_conversion
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Drdpmc.c35 u32 seq, idx, time_mult = 0, time_shift = 0; local
47 time_mult = pc->time_mult;
65 delta = time_offset + quot * time_mult +
66 ((rem * time_mult) >> time_shift);
/external/kernel-headers/original/uapi/linux/
H A Dperf_event.h366 * u32 seq, time_mult, time_shift, idx, width;
381 * time_mult = pc->time_mult;
436 * delta = time_offset + quot * time_mult +
437 * ((rem * time_mult) >> time_shift);
439 * Where time_offset,time_mult,time_shift and cyc are read in the
452 __u32 time_mult; member in struct:perf_event_mmap_page
459 * quot = time / time_mult;
460 * rem = time % time_mult;
461 * cyc = (quot << time_shift) + (rem << time_shift) / time_mult;
[all...]
/external/linux-tools-perf/perf-3.12.0/include/uapi/linux/
H A Dperf_event.h343 * u32 seq, time_mult, time_shift, idx, width;
358 * time_mult = pc->time_mult;
413 * delta = time_offset + quot * time_mult +
414 * ((rem * time_mult) >> time_shift);
416 * Where time_offset,time_mult,time_shift and cyc are read in the
429 __u32 time_mult; member in struct:perf_event_mmap_page
436 * quot = time / time_mult;
437 * rem = time % time_mult;
438 * cyc = (quot << time_shift) + (rem << time_shift) / time_mult;
[all...]

Completed in 94 milliseconds