Home
last modified time | relevance | path

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

/freebsd-head/contrib/ntp/ntpd/
HDrefclock_wwv.c1390 static int epoch_mf[3]; /* epoch median filter */ in wwv_endpoc() local
1411 ZERO(epoch_mf); in wwv_endpoc()
1434 epoch_mf[2] = epoch_mf[1]; in wwv_endpoc()
1435 epoch_mf[1] = epoch_mf[0]; in wwv_endpoc()
1436 epoch_mf[0] = epopos; in wwv_endpoc()
1437 if (epoch_mf[0] > epoch_mf[1]) { in wwv_endpoc()
1438 if (epoch_mf[1] > epoch_mf[2]) in wwv_endpoc()
1439 tepoch = epoch_mf[1]; /* 0 1 2 */ in wwv_endpoc()
1440 else if (epoch_mf[2] > epoch_mf[0]) in wwv_endpoc()
1441 tepoch = epoch_mf[0]; /* 2 0 1 */ in wwv_endpoc()
[all …]