Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/os/
H A Dclock.c145 int32_t time_tolerance = MAXFREQ; /* frequency tolerance (scaled ppm) */ variable
660 time_maxerror += time_tolerance / SCALE_USEC; in clock()
1235 if (time_freq > time_tolerance) in clock_update()
1236 time_freq = time_tolerance; in clock_update()
1237 else if (time_freq < -time_tolerance) in clock_update()
1238 time_freq = -time_tolerance; in clock_update()
1407 v_usec > time_tolerance || v_usec < -time_tolerance) { in ddi_hardpps()
1467 if (pps_freq < -time_tolerance) in ddi_hardpps()
1468 pps_freq = -time_tolerance; in ddi_hardpps()
1472 if (pps_freq > time_tolerance) in ddi_hardpps()
[all …]
/illumos-gate/usr/src/uts/common/sys/
H A Dtimex.h256 extern int32_t time_tolerance; /* frequency tolerance (scaled ppm) */
/illumos-gate/usr/src/uts/common/syscall/
H A Dntptime.c208 ntv.tolerance = time_tolerance; in ntp_adjtime()