HomeSort by: relevance | last modified time | path
    Searched defs:NS_PER_TICK (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/prep/stand/boot/
boot.h 4 #define NS_PER_TICK (1000000000 / TICKS_PER_SEC)
  /src/sys/arch/rs6000/stand/boot/
boot.h 4 #define NS_PER_TICK (1000000000 / TICKS_PER_SEC)
  /src/sys/arch/bebox/stand/boot/
boot.h 4 #define NS_PER_TICK (1000000000 / TICKS_PER_SEC)
  /src/sys/arch/xen/xen/
xen_clock.c 71 #define NS_PER_TICK ((uint64_t)1000000000ULL/hz)
753 NS_PER_TICK);
778 const uint64_t ns_per_tick = NS_PER_TICK; local in function:xen_timer_handler
809 ci->ci_xen_hardclock_systime_ns = last = now - ns_per_tick;
818 if (__predict_false(delta >= 2*ns_per_tick)) {
820 last, now, delta/ns_per_tick);
841 while (delta >= ns_per_tick) {
842 ci->ci_xen_hardclock_systime_ns += ns_per_tick;
843 delta -= ns_per_tick;
    [all...]

Completed in 42 milliseconds