Home
last modified time | relevance | path

Searched refs:MAXFREQ (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/sys/kern/
H A Dkern_ntptime.c414 if (freq > MAXFREQ) in kern_ntp_adjtime()
415 L_LINT(time_freq, MAXFREQ); in kern_ntp_adjtime()
416 else if (freq < -MAXFREQ) in kern_ntp_adjtime()
417 L_LINT(time_freq, -MAXFREQ); in kern_ntp_adjtime()
713 L_LINT(time_freq, MAXFREQ); in hardupdate()
715 L_LINT(time_freq, -MAXFREQ); in hardupdate()
782 if (v_nsec > MAXFREQ || v_nsec < -MAXFREQ) in hardpps()
915 if (u_nsec > MAXFREQ) in hardpps()
916 L_LINT(pps_freq, MAXFREQ); in hardpps()
917 else if (u_nsec < -MAXFREQ) in hardpps()
[all …]
/freebsd-14.2/contrib/ntp/kernel/sys/
H A Dtimex.h159 #define MAXFREQ (512L << SHIFT_USEC) /* max freq error (100 ppm) */ macro
162 #define MAXFREQ (512L << SHIFT_USEC) /* max freq error (200 ppm) */ macro
/freebsd-14.2/contrib/ntp/util/
H A Dkern.c25 #define MAXFREQ 200 /* max frequency error (ppm) */ macro
50 long time_tolerance = MAXFREQ; /* frequency tolerance (ppm) */
/freebsd-14.2/contrib/ntp/ntpd/
H A Drefclock_irig.c168 #define MAXFREQ (250e-6 * SECOND) /* freq tolerance (.025%) */ macro
661 if (up->freq > MAXFREQ) { in irig_base()
662 up->freq = MAXFREQ; in irig_base()
664 } else if (up->freq < -MAXFREQ) { in irig_base()
665 up->freq = -MAXFREQ; in irig_base()
H A Drefclock_wwv.c91 #define MAXFREQ 1.5 /* max frequency tolerance (187 PPM) */ macro
1543 if (fabs(dtemp) < MAXFREQ * MINAVG) { in wwv_endpoc()
1546 if (up->freq > MAXFREQ) in wwv_endpoc()
1547 up->freq = MAXFREQ; in wwv_endpoc()
1548 else if (up->freq < -MAXFREQ) in wwv_endpoc()
1549 up->freq = -MAXFREQ; in wwv_endpoc()
1550 if (fabs(dtemp) < MAXFREQ * MINAVG / 2.) { in wwv_endpoc()
/freebsd-14.2/sys/sys/
H A Dtimex.h53 #define MAXFREQ 500000L /* max freq error (ns/s) */ macro
/freebsd-14.2/contrib/ntp/
H A DCommitLog-4.1.02227 MAXFREQ -> MAX_FREQ
2237 sys_maxfreq -> MAXFREQ
H A DCommitLog223936 Bump MAXFREQ from 125 to 187 PPM, from Dave Mills