Home
last modified time | relevance | path

Searched refs:old_tsc2 (Results 1 – 2 of 2) sorted by relevance

/dragonfly/sys/platform/pc64/apic/
H A Dlapic.c486 u_int64_t old_tsc1, old_tsc2, new_tsc1, new_tsc2; in do_tsc_calibration() local
496 old_tsc2 = rdtsc_ordered(); in do_tsc_calibration()
498 old_tsc2 - old_tsc1 > 2 * apic_delay_tsc) { in do_tsc_calibration()
527 diff = (new_tsc1 - old_tsc1) + (new_tsc2 - old_tsc2); in do_tsc_calibration()
/dragonfly/sys/platform/pc64/isa/
H A Dclock.c799 u_int64_t old_tsc2, start_lat2, new_tsc2, end_lat2; in do_calibrate_cputimer() local
808 old_tsc2 = do_measure(timer_latency, &start_lat2, &start2, in do_calibrate_cputimer()
818 old_tsc2 += start_lat2; in do_calibrate_cputimer()
820 freq2 = (new_tsc2 - old_tsc2) + (start_lat2 + end_lat2) / 2; in do_calibrate_cputimer()