HomeSort by: relevance | last modified time | path
    Searched refs:MAXPHASE (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/ntp/dist/util/
kern.c 26 #define MAXPHASE 512000 /* max phase error (us) */
54 long time_maxerror = MAXPHASE; /* maximum error (us) */
55 long time_esterror = MAXPHASE; /* estimated error (us) */
80 timex.tv_usec = MAXPHASE;
  /src/sys/kern/
kern_ntptime.c 183 static long time_maxerror = MAXPHASE / 1000; /* maximum error (us) */
184 static long time_esterror = MAXPHASE / 1000; /* estimated error (us) */
370 offset = MIN(offset, MAXPHASE/1000);
371 offset = MAX(offset, -MAXPHASE/1000);
634 if (offset > MAXPHASE)
635 time_monitor = MAXPHASE;
636 else if (offset < -MAXPHASE)
637 time_monitor = -MAXPHASE;
  /src/sys/compat/freebsd/
freebsd_timex.h 131 * MAXPHASE must be set greater than or equal to CLOCK.MAX (128 ms), as
135 * MAXPHASE only in order to prevent overflow errors due to defective
153 #define MAXPHASE 128000L /* max phase error (us) */
  /src/sys/sys/
timex.h 114 #define MAXPHASE 500000000L /* max phase error (ns) */
  /src/external/bsd/ntp/dist/kernel/sys/
timex.h 137 * MAXPHASE must be set greater than or equal to CLOCK.MAX (128 ms), as
141 * MAXPHASE only in order to prevent overflow errors due to defective
159 #define MAXPHASE 512000L /* max phase error (us) */

Completed in 31 milliseconds