Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/os/
H A Dclock.c147 int32_t time_maxerror = MAXPHASE; /* maximum error (us) */
148 int32_t time_esterror = MAXPHASE; /* estimated error (us) */
730 if (lltemp > (MAXPHASE / MINSEC) * SCALE_UPDATE) in clock()
731 lltemp = (MAXPHASE / MINSEC) * SCALE_UPDATE; in clock()
744 if (lltemp > (MAXPHASE / MINSEC) * SCALE_UPDATE) in clock()
745 lltemp = (MAXPHASE / MINSEC) * SCALE_UPDATE; in clock()
1201 if (ltemp > MAXPHASE) in clock_update()
1202 time_offset = MAXPHASE * SCALE_UPDATE; in clock_update()
1203 else if (ltemp < -MAXPHASE) in clock_update()
1204 time_offset = -(MAXPHASE * SCALE_UPDATE); in clock_update()
/illumos-gate/usr/src/uts/common/sys/
H A Dtimex.h112 #define MAXPHASE 512000 /* max phase error (us) */ macro