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

/fuchsia/zircon/kernel/platform/pc/
H A Dtimer.cpp293 uint32_t best_time[2] = {UINT32_MAX, UINT32_MAX}; local
327 if (apic_ticks < best_time[trial]) {
328 best_time[trial] = apic_ticks;
347 if (best_time[trial] == UINT32_MAX) {
352 apic_ticks_per_ms = (best_time[1] - best_time[0]) / (duration_ms[1] - duration_ms[0]);
363 uint64_t best_time = UINT64_MAX; local
399 if (tsc_ticks < best_time) {
400 best_time = tsc_ticks;
416 return best_time;
431 uint64_t best_time[2] = { local
[all...]

Completed in 72 milliseconds