tsc_now           930 arch/x86/kernel/apic/apic.c 				u64 tsc_now = rdtsc();
tsc_now           931 arch/x86/kernel/apic/apic.c 				if ((tsc_now - tsc_start) >= tsc_perj) {
tsc_now           128 arch/x86/kernel/cpu/vmware.c 	unsigned long long tsc_now = rdtsc();
tsc_now           132 arch/x86/kernel/cpu/vmware.c 	d->cyc2ns_offset = mul_u64_u32_shr(tsc_now, d->cyc2ns_mul,
tsc_now           123 arch/x86/kernel/tsc.c static void __set_cyc2ns_scale(unsigned long khz, int cpu, unsigned long long tsc_now)
tsc_now           129 arch/x86/kernel/tsc.c 	ns_now = cycles_2_ns(tsc_now);
tsc_now           151 arch/x86/kernel/tsc.c 		mul_u64_u32_shr(tsc_now, data.cyc2ns_mul, data.cyc2ns_shift);
tsc_now           161 arch/x86/kernel/tsc.c static void set_cyc2ns_scale(unsigned long khz, int cpu, unsigned long long tsc_now)
tsc_now           169 arch/x86/kernel/tsc.c 		__set_cyc2ns_scale(khz, cpu, tsc_now);
tsc_now           213 arch/x86/kernel/tsc.c 		u64 tsc_now = rdtsc();
tsc_now           216 arch/x86/kernel/tsc.c 		return cycles_2_ns(tsc_now);
tsc_now           332 drivers/thermal/intel/intel_powerclamp.c 	u64 msr_now, tsc_now;
tsc_now           337 drivers/thermal/intel/intel_powerclamp.c 	tsc_now = rdtsc();
tsc_now           342 drivers/thermal/intel/intel_powerclamp.c 	else if (tsc_now-tsc_last) {
tsc_now           344 drivers/thermal/intel/intel_powerclamp.c 		do_div(val64, (tsc_now-tsc_last));
tsc_now           350 drivers/thermal/intel/intel_powerclamp.c 	tsc_last = tsc_now;
tsc_now           452 drivers/thermal/intel/intel_powerclamp.c 	u64 tsc_now;
tsc_now           456 drivers/thermal/intel/intel_powerclamp.c 	tsc_now = rdtsc();
tsc_now           462 drivers/thermal/intel/intel_powerclamp.c 		if (tsc_now - tsc_last) {
tsc_now           464 drivers/thermal/intel/intel_powerclamp.c 			do_div(val64, (tsc_now - tsc_last));
tsc_now           471 drivers/thermal/intel/intel_powerclamp.c 	tsc_last = tsc_now;