Home
last modified time | relevance | path

Searched refs:codeproc (Results 1 – 18 of 18) sorted by relevance

/freebsd-12.1/contrib/ntp/ntpd/
H A Dntp_refclock.c89 if (pp->coderecv == pp->codeproc) in clk_add_sample()
90 pp->codeproc = (pp->codeproc + 1) % MAXSTAGE; in clk_add_sample()
98 if (pp->coderecv == pp->codeproc) in clk_pop_sample()
100 pp->codeproc = (pp->codeproc + 1) % MAXSTAGE; in clk_pop_sample()
101 return pp->filter[pp->codeproc]; in clk_pop_sample()
122 if (pp->coderecv == pp->codeproc) in clk_add_sample()
123 pp->codeproc = (pp->codeproc + 1) & (MAXSTAGE - 1); in clk_add_sample()
133 pp->codeproc = (pp->codeproc + 1) & (MAXSTAGE - 1); in clk_pop_sample()
134 return pp->filter[pp->codeproc]; in clk_pop_sample()
476 pp->codeproc = (pp->codeproc + nd) % MAXSTAGE; in refclock_samples_expire()
[all …]
H A Drefclock_wwvb.c532 pp->coderecv = pp->codeproc; in wwvb_poll()
538 if (pp->coderecv == pp->codeproc) { in wwvb_poll()
H A Drefclock_atom.c229 if (pp->codeproc == pp->coderecv) { in atom_poll()
H A Drefclock_tpro.c197 if (pp->coderecv == pp->codeproc) { in tpro_poll()
H A Drefclock_pst.c302 if (pp->coderecv == pp->codeproc) { in pst_poll()
H A Drefclock_heath.c433 if (pp->coderecv == pp->codeproc) { in heath_poll()
H A Drefclock_gpsdjson.c706 if (pp->coderecv != pp->codeproc) { in poll_primary()
750 if (pp->coderecv != pp->codeproc) { in poll_secondary()
872 if (pp->coderecv != pp->codeproc) { in timer_secondary()
874 pp->coderecv = pp->codeproc; in timer_secondary()
950 if (pp->coderecv == pp->codeproc) in add_clock_sample()
H A Drefclock_tt560.c229 if (pp->coderecv == pp->codeproc) { in tt560_poll()
H A Drefclock_as2201.c379 if (pp->coderecv == pp->codeproc) { in as2201_poll()
H A Drefclock_ulink.c556 if (pp->coderecv == pp->codeproc) { in ulink_poll()
H A Drefclock_arbiter.c464 if (pp->coderecv == pp->codeproc) { in arb_poll()
H A Drefclock_jupiter.c362 else if (pp->coderecv != pp->codeproc) in jupiter_ticker()
483 if (pp->coderecv != pp->codeproc) { in jupiter_poll()
H A Drefclock_nmea.c610 } else if (pp->codeproc != pp->coderecv) { in nmea_timer()
1129 if (pp->coderecv == pp->codeproc) { in nmea_poll()
H A Drefclock_shm.c340 if (pp->coderecv != pp->codeproc) { in shm_poll()
H A Drefclock_tsyncpci.c756 if (pp->coderecv == pp->codeproc) { in tsync_poll()
H A Drefclock_irig.c986 if (pp->coderecv == pp->codeproc) { in irig_poll()
H A Dntp_proto.c3227 peer->procptr->codeproc = 0; in peer_clear()
/freebsd-12.1/contrib/ntp/include/
H A Dntp_refclock.h163 u_int codeproc; /* get pointer */ member