/freebsd/contrib/ntp/ntpd/ |
H A D | ntp_monitor.c | 319 mon_entry * oldest; in ntp_monitor() local 446 oldest = TAIL_DLIST(mon_mru_list, mru); in ntp_monitor() 448 if (oldest != NULL) { in ntp_monitor() 450 L_SUB(&interval_fp, &oldest->last); in ntp_monitor() 456 if (oldest != NULL && mru_maxage < oldest_age) { in ntp_monitor() 457 mon_reclaim_entry(oldest); in ntp_monitor() 458 mon = oldest; in ntp_monitor() 469 mon_reclaim_entry(oldest); in ntp_monitor() 470 mon = oldest; in ntp_monitor()
|
H A D | invoke-ntp.conf.texi | 1448 replacing the oldest entry from the monitor (MRU) 1451 of replacing the oldest entry is the age of that entry 1454 value, default 3000. For example, if the oldest entry 1458 now is 10%. Conversely, if the oldest entry is more 2737 if the oldest entry was updated more than 2740 If the oldest entry was updated more recently the MRU list is grown,
|
H A D | ntp.conf.def | 1519 replacing the oldest entry from the monitor (MRU) 1522 of replacing the oldest entry is the age of that entry 1525 value, default 3000. For example, if the oldest entry 1529 now is 10%. Conversely, if the oldest entry is more 2897 if the oldest entry was updated more than 2900 If the oldest entry was updated more recently the MRU list is grown,
|
/freebsd/sys/net80211/ |
H A D | ieee80211_dfs.c | 236 int i, oldest, now; in dfs_timeout() local 240 now = oldest = ticks; in dfs_timeout() 260 } else if (dfs->nol_event[i] < oldest) in dfs_timeout() 261 oldest = dfs->nol_event[i]; in dfs_timeout() 264 if (oldest != now) { in dfs_timeout() 266 callout_schedule(&dfs->nol_timer, oldest + NOL_TIMEOUT - now); in dfs_timeout()
|
/freebsd/sys/contrib/dev/mediatek/mt76/mt7996/ |
H A D | coredump.c | 121 u32 oldest, i, idx; in mt7996_coredump_fw_stack() local 139 oldest = (u32)mt76_get_field(dev, MT_MCU_WM_EXCP_PC_CTRL, in mt7996_coredump_fw_stack() 142 idx = ((oldest + 2 * i + 1) % 32); in mt7996_coredump_fw_stack() 147 oldest = (u32)mt76_get_field(dev, MT_MCU_WM_EXCP_LR_CTRL, in mt7996_coredump_fw_stack() 150 idx = ((oldest + 2 * i + 1) % 32); in mt7996_coredump_fw_stack()
|
/freebsd/usr.sbin/bsnmpd/modules/snmp_hostres/ |
H A D | hostres_processor_tbl.c | 95 u_int i, oldest; in get_avg_load() local 107 oldest = (e->cur_sample_idx + 1) % MAX_CPU_SAMPLES; in get_avg_load() 109 oldest = 0; in get_avg_load() 114 delta -= e->states[oldest][i]; in get_avg_load() 122 e->states[oldest][CPUSTATES-1]) / delta; in get_avg_load()
|
/freebsd/bin/pkill/ |
H A D | pkill.c | 102 static int oldest; variable 262 oldest = 1; in main() 299 if (newest && oldest) in main() 548 if (newest || oldest) { in main() 561 if (oldest) /* but we want the oldest */ in main()
|
/freebsd/sys/contrib/dev/mediatek/mt76/mt7915/ |
H A D | coredump.c | 227 u32 oldest, i, idx; in mt7915_coredump_fw_stack() local 233 oldest = (u32)mt76_get_field(dev, 0x89050200, GENMASK(20, 16)) + 2; in mt7915_coredump_fw_stack() 235 idx = ((oldest + 2 * i + 1) % 32); in mt7915_coredump_fw_stack()
|
/freebsd/contrib/unbound/services/cache/ |
H A D | infra.c | 1009 int i, oldest; in infra_rate_find_second_or_none() local 1016 oldest = 0; in infra_rate_find_second_or_none() 1018 if(d->timestamp[i] < d->timestamp[oldest]) in infra_rate_find_second_or_none() 1019 oldest = i; in infra_rate_find_second_or_none() 1021 d->timestamp[oldest] = t; in infra_rate_find_second_or_none() 1022 d->qps[oldest] = 0; in infra_rate_find_second_or_none() 1023 return &(d->qps[oldest]); in infra_rate_find_second_or_none()
|
/freebsd/lib/libc/yp/ |
H A D | yplib.c | 179 time_t oldest = 0; in ypmatch_cache_insert() local 181 oldest = ~oldest; in ypmatch_cache_insert() 184 if (c->ypc_expire_t < oldest) { in ypmatch_cache_insert() 185 oldest = c->ypc_expire_t; in ypmatch_cache_insert()
|
/freebsd/sys/contrib/device-tree/Bindings/c6x/ |
H A D | emifa.txt | 22 of the oldest command in the command FIFO. Setting this field to 255
|
/freebsd/contrib/ntp/libntp/lib/isc/ |
H A D | log.c | 1551 isc_time_t oldest; in isc_log_doit() local 1562 TIME_NOW(&oldest); in isc_log_doit() 1563 if (isc_time_subtract(&oldest, &interval, &oldest) in isc_log_doit() 1575 &oldest) < 0) { in isc_log_doit()
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | kernel-mkdir.m4 | 2 dnl # Supported mkdir() interfaces checked newest to oldest.
|
H A D | kernel-xattr-handler.m4 | 69 dnl # Supported xattr handler set() interfaces checked newest to oldest.
|
/freebsd/contrib/ofed/opensm/libvendor/ |
H A D | osm_vendor_ibumad.c | 207 uint32_t oldest = ~0, oldest_smp = ~0; in put_madw() local 229 if (oldest >= m->version) { in put_madw() 230 oldest = m->version; in put_madw() 236 if (oldest != ~0) { in put_madw()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | spa_log_spacemap.c | 924 metaslab_t *oldest = avl_first(&spa->spa_metaslabs_by_flushed); in spa_cleanup_old_sm_logs() local 925 uint64_t oldest_flushed_txg = metaslab_unflushed_txg(oldest); in spa_cleanup_old_sm_logs()
|
H A D | ddt.c | 2718 uint64_t oldest = 0; in ddt_prune_unique_entries() local 2733 oldest = MAX(1, (1<<i) * 3600); in ddt_prune_unique_entries() 2740 cutoff = gethrestime_sec() - oldest; in ddt_prune_unique_entries()
|
/freebsd/contrib/wpa/src/p2p/ |
H A D | p2p.c | 420 struct p2p_device *dev, *oldest = NULL; in p2p_create_device() local 429 if (oldest == NULL || in p2p_create_device() 430 os_reltime_before(&dev->last_seen, &oldest->last_seen)) in p2p_create_device() 431 oldest = dev; in p2p_create_device() 433 if (count + 1 > p2p->cfg->max_peers && oldest) { in p2p_create_device() 436 MACSTR, MAC2STR(oldest->info.p2p_device_addr)); in p2p_create_device() 437 dl_list_del(&oldest->list); in p2p_create_device() 438 p2p_device_free(p2p, oldest); in p2p_create_device()
|
/freebsd/sys/netinet/ |
H A D | tcp_subr.c | 4444 int i, oldest, oldest_set = 0, cnt_rm = 0; in tcp_req_check_for_stale_entries() local 4464 oldest = i; in tcp_req_check_for_stale_entries() 4479 ent = &tp->t_tcpreq_info[oldest]; in tcp_req_check_for_stale_entries()
|
/freebsd/sys/ufs/ffs/ |
H A D | ffs_softdep.c | 1029 * Merge two jsegdeps keeping only the oldest one as newer references 3551 struct jseg *oldest; in softdep_synchronize_completed() local 3566 oldest = NULL; in softdep_synchronize_completed() 3573 oldest = jseg; in softdep_synchronize_completed() 3577 * Restart deferred journal entry processing from the oldest in softdep_synchronize_completed() 3580 if (oldest) in softdep_synchronize_completed() 3581 complete_jsegs(oldest); in softdep_synchronize_completed() 4801 * oldest valid segment. in free_jsegs() 5633 * oldest record will be placed on wkhd if it has been written. If not 7647 * work. Since we need only the oldest journa in cancel_newblk() [all...] |
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | Options.td | 1149 "starting at the oldest instruction. Otherwise, it starts at the most " 1154 "instruction, or the oldest if --forwards is provided.">;
|
/freebsd/crypto/heimdal/doc/ |
H A D | setup.texi | 536 and when a slave is at an older version than the oldest one in the
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_interceptors.inc | 281 // with RTLD_NEXT to return the oldest versioned symbol. 285 // oldest Glibc version pre-dates support for that architecture. 3832 // Workaround a bug in glibc where dlsym(RTLD_NEXT, ...) returns the oldest
|
/freebsd/contrib/unbound/contrib/ |
H A D | fastrpz.patch | 686 + * to tell dnsrpzd the oldest version that each client is using.
|
/freebsd/contrib/tcsh/ |
H A D | Fixes | 1134 9. Added histdup=erase, that deletes the oldest duplicate instead of
|