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

/freebsd-11.0-release/contrib/ntp/util/
H A Dkern.c24 #define MAXPHASE 512000 /* max phase error (us) */ macro
52 long time_maxerror = MAXPHASE; /* maximum error (us) */
53 long time_esterror = MAXPHASE; /* estimated error (us) */
78 timex.tv_usec = MAXPHASE;
/freebsd-11.0-release/contrib/ntp/kernel/sys/
H A Dtimex.h135 * MAXPHASE must be set greater than or equal to CLOCK.MAX (128 ms), as
139 * MAXPHASE only in order to prevent overflow errors due to defective
157 #define MAXPHASE 512000L /* max phase error (us) */ macro
/freebsd-11.0-release/sys/sys/
H A Dtimex.h54 #define MAXPHASE 500000000L /* max phase error (ns) */ macro
/freebsd-11.0-release/sys/kern/
H A Dkern_ntptime.c156 static long time_maxerror = MAXPHASE / 1000; /* maximum error (us) */
157 long time_esterror = MAXPHASE / 1000; /* estimated error (us) */
705 if (offset > MAXPHASE)
706 time_monitor = MAXPHASE;
707 else if (offset < -MAXPHASE)
708 time_monitor = -MAXPHASE;

Completed in 55 milliseconds