time_shift       1225 arch/arm64/kernel/perf_event.c 	userpg->time_shift = (u16)shift;
time_shift       2341 arch/x86/events/core.c 	userpg->time_shift = data.cyc2ns_shift;
time_shift        566 include/uapi/linux/perf_event.h 	__u16	time_shift;
time_shift        566 tools/include/uapi/linux/perf_event.h 	__u16	time_shift;
time_shift         40 tools/perf/arch/x86/tests/rdpmc.c 	u32 seq, idx, time_mult = 0, time_shift = 0;
time_shift         53 tools/perf/arch/x86/tests/rdpmc.c 			time_shift = pc->time_shift;
time_shift         68 tools/perf/arch/x86/tests/rdpmc.c 		quot = (cyc >> time_shift);
time_shift         69 tools/perf/arch/x86/tests/rdpmc.c 		rem = cyc & (((u64)1 << time_shift) - 1);
time_shift         71 tools/perf/arch/x86/tests/rdpmc.c 			((rem * time_mult) >> time_shift);
time_shift         96 tools/perf/arch/x86/util/intel-bts.c 	auxtrace_info->priv[INTEL_BTS_TIME_SHIFT] = tc.time_shift;
time_shift        375 tools/perf/arch/x86/util/intel-pt.c 	auxtrace_info->priv[INTEL_PT_TIME_SHIFT] = tc.time_shift;
time_shift         26 tools/perf/arch/x86/util/tsc.c 		tc->time_shift = pc->time_shift;
time_shift         80 tools/perf/arch/x86/util/tsc.c 	event.time_conv.time_shift = tc.time_shift;
time_shift        310 tools/perf/lib/include/perf/event.h 	__u64			 time_shift;
time_shift        872 tools/perf/util/intel-bts.c 	bts->tc.time_shift = auxtrace_info->priv[INTEL_BTS_TIME_SHIFT];
time_shift        845 tools/perf/util/intel-pt.c 	return (quot << pt->tc.time_shift) + (rem << pt->tc.time_shift) /
time_shift       3107 tools/perf/util/intel-pt.c 	pt->tc.time_shift = auxtrace_info->priv[INTEL_PT_TIME_SHIFT];
time_shift        376 tools/perf/util/jitdump.c 	tc.time_shift = jd->session->time_conv.time_shift;
time_shift         14 tools/perf/util/tsc.c 	return (quot << tc->time_shift) +
time_shift         15 tools/perf/util/tsc.c 	       (rem << tc->time_shift) / tc->time_mult;
time_shift         22 tools/perf/util/tsc.c 	quot = cyc >> tc->time_shift;
time_shift         23 tools/perf/util/tsc.c 	rem  = cyc & (((u64)1 << tc->time_shift) - 1);
time_shift         25 tools/perf/util/tsc.c 	       ((rem * tc->time_mult) >> tc->time_shift);
time_shift          8 tools/perf/util/tsc.h 	u16 time_shift;