Searched refs:oldest (Results 1 - 14 of 14) sorted by relevance

/freebsd-10.3-release/contrib/ntp/ntpd/
H A Dntp_monitor.c317 mon_entry * oldest; local
443 oldest = TAIL_DLIST(mon_mru_list, mru);
445 if (oldest != NULL) {
447 L_SUB(&interval_fp, &oldest->last);
453 if (oldest != NULL && mru_maxage < oldest_age) {
454 mon_reclaim_entry(oldest);
455 mon = oldest;
466 mon_reclaim_entry(oldest);
467 mon = oldest;
/freebsd-10.3-release/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_processor_tbl.c97 u_int i, oldest; local
109 oldest = (e->cur_sample_idx + 1) % MAX_CPU_SAMPLES;
111 oldest = 0;
116 delta -= e->states[oldest][i];
124 e->states[oldest][CPUSTATES-1]) / delta;
/freebsd-10.3-release/sys/net80211/
H A Dieee80211_dfs.c238 int i, oldest, now; local
242 now = oldest = ticks;
262 } else if (dfs->nol_event[i] < oldest)
263 oldest = dfs->nol_event[i];
266 if (oldest != now) {
268 callout_schedule(&dfs->nol_timer, oldest + NOL_TIMEOUT - now);
/freebsd-10.3-release/contrib/subversion/subversion/libsvn_ra/
H A Dcompat.c317 svn_revnum_t youngest_requested, oldest_requested, youngest, oldest;
338 /* Figure out the youngest and oldest revs (amongst the set of
350 oldest = peg_revision;
351 oldest = (oldest_requested < oldest) ? oldest_requested : oldest;
352 oldest = (youngest_requested < oldest) ? youngest_requested : oldest;
368 SVN_ERR(svn_ra_get_log2(session, targets, youngest, oldest,
315 svn_revnum_t youngest_requested, oldest_requested, youngest, oldest; local
[all...]
/freebsd-10.3-release/bin/pkill/
H A Dpkill.c102 static int oldest; variable
260 oldest = 1;
297 if (newest && oldest)
518 if (newest || oldest) {
531 if (oldest) /* but we want the oldest */
/freebsd-10.3-release/contrib/unbound/services/cache/
H A Dinfra.c770 /** find the second and return its rate counter, if none, remove oldest */
774 int i, oldest; local
779 /* remove oldest timestamp, and insert it at t with 0 qps */
780 oldest = 0;
782 if(d->timestamp[i] < d->timestamp[oldest])
783 oldest = i;
785 d->timestamp[oldest] = t;
786 d->qps[oldest] = 0;
787 return &(d->qps[oldest]);
/freebsd-10.3-release/lib/libc/yp/
H A Dyplib.c185 time_t oldest = 0; local
187 oldest = ~oldest;
190 if (c->ypc_expire_t < oldest) {
191 oldest = c->ypc_expire_t;
/freebsd-10.3-release/sys/netatalk/
H A Daarp.c573 int oldest = -1; local
588 if ((int) aat->aat_timer > oldest) {
589 oldest = aat->aat_timer;
/freebsd-10.3-release/contrib/ntp/lib/isc/
H A Dlog.c1235 * though the file names are 0 based, so an oldest log of log.1
1551 isc_time_t oldest; local
1558 * 'oldest' is the age of the oldest messages
1562 TIME_NOW(&oldest);
1563 if (isc_time_subtract(&oldest, &interval, &oldest)
1575 &oldest) < 0) {
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugInfoEntry.h285 const DWARFDebugInfoEntry* oldest,
H A DDWARFDebugInfoEntry.cpp442 // Dumps all of a debug information entries parents up until oldest and
450 const DWARFDebugInfoEntry* oldest,
456 if (parent && parent != oldest)
457 parent->DumpAncestry(dwarf2Data, cu, oldest, s, 0);
/freebsd-10.3-release/contrib/ofed/management/opensm/libvendor/
H A Dosm_vendor_ibumad.c160 uint32_t oldest = ~0; local
173 if (oldest > m->version) {
174 oldest = m->version;
/freebsd-10.3-release/contrib/wpa/src/p2p/
H A Dp2p.c377 struct p2p_device *dev, *oldest = NULL; local
386 if (oldest == NULL ||
387 os_time_before(&dev->last_seen, &oldest->last_seen))
388 oldest = dev;
390 if (count + 1 > p2p->cfg->max_peers && oldest) {
392 "P2P: Remove oldest peer entry to make room for a new "
394 dl_list_del(&oldest->list);
395 p2p_device_free(p2p, oldest);
/freebsd-10.3-release/sys/ufs/ffs/
H A Dffs_softdep.c1048 * Merge two jsegdeps keeping only the oldest one as newer references
3262 struct jseg *oldest; local
3277 oldest = NULL;
3284 oldest = jseg;
3288 * Restart deferred journal entry processing from the oldest
3291 if (oldest)
3292 complete_jsegs(oldest);
4535 * oldest valid segment.
5388 * oldest record will be placed on wkhd if it has been written. If not
7362 * work. Since we need only the oldest journa
[all...]

Completed in 291 milliseconds