Home
last modified time | relevance | path

Searched refs:ntp_tick_delta (Results 1 – 3 of 3) sorted by relevance

/dragonfly/sys/kern/
H A Dkern_time.c725 ntp_tick_delta = ntp_delta; in kern_adjtime_common()
727 ntp_tick_delta = 10 * ntp_default_tick_delta; in kern_adjtime_common()
729 ntp_tick_delta = -10 * ntp_default_tick_delta; in kern_adjtime_common()
731 ntp_tick_delta = ntp_default_tick_delta; in kern_adjtime_common()
733 ntp_tick_delta = -ntp_default_tick_delta; in kern_adjtime_common()
889 &ntp_tick_delta, sizeof(ntp_tick_delta), "LU",
H A Dkern_clock.c311 int32_t ntp_tick_delta; /* current adjustment rate */ variable
660 nbt->tv_nsec += ntp_tick_delta; in hardclock()
661 ntp_delta -= ntp_tick_delta; in hardclock()
662 if ((ntp_delta > 0 && ntp_delta < ntp_tick_delta) || in hardclock()
663 (ntp_delta < 0 && ntp_delta > ntp_tick_delta)) { in hardclock()
664 ntp_tick_delta = ntp_delta; in hardclock()
/dragonfly/sys/sys/
H A Dtime.h192 extern int32_t ntp_tick_delta;