/freebsd/lib/libpmc/pmu-events/arch/arm64/fujitsu/a64fx/ |
H A D | other.json | 9 …his event counts every cycle that no operation was committed because the oldest and uncommitted lo… 12 …his event counts every cycle that no operation was committed because the oldest and uncommitted lo… 15 …s event counts every cycle that no instruction was committed because the oldest and uncommitted in… 18 …s event counts every cycle that no instruction was committed because the oldest and uncommitted in… 21 …s event counts every cycle that no instruction was committed because the oldest and uncommitted lo… 24 …s event counts every cycle that no instruction was committed because the oldest and uncommitted lo… 27 …s event counts every cycle that no instruction was committed because the oldest and uncommitted in… 30 …s event counts every cycle that no instruction was committed because the oldest and uncommitted in… 33 …s event counts every cycle that no instruction was committed because the oldest and uncommitted lo… 36 …s event counts every cycle that no instruction was committed because the oldest and uncommitted lo… [all …]
|
/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()
|
/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/sys/contrib/openzfs/module/zfs/ |
H A D | spa_log_spacemap.c | 81 * know when a log space map has become obsolete by looking at the oldest 92 * metaslabs in-order from the oldest-flushed to the most recently flushed 94 * oldest flushed metaslab to distinguish which log space maps have become 110 * important because if that counter is zero and this is the oldest 160 * by iterating backwards from the oldest log space map to the newest one 220 * linearly from txg to txg (e.g. the oldest log should have the most 409 * We typically flush the oldest flushed metaslab so the first (and oldest) 411 * we may flush the second oldest one which may be part of an entry later in 452 * old log space maps. Since we can only destroy the oldest log space maps, 453 * we decrement the block count of the oldest summary entry and potentially [all …]
|
/freebsd/usr.sbin/bsnmpd/modules/snmp_hostres/ |
H A D | hostres_processor_tbl.c | 95 u_int i, oldest; in get_avg_load() local 105 /* Oldest usable index, we wrap around. */ in get_avg_load() 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/lib/libpmc/pmu-events/arch/x86/alderlake/ |
H A D | memory.json | 3 …"BriefDescription": "Counts the number of cycles that the head (oldest load) of the load buffer is… 12 …"BriefDescription": "Counts the number of cycles that the head (oldest load) of the load buffer is… 21 …"BriefDescription": "Counts the number of cycles that the head (oldest load) of the load buffer is… 32 …"BriefDescription": "Counts the number of cycles that the head (oldest load) of the load buffer is… 43 …"BriefDescription": "Counts the number of cycles that the head (oldest load) of the load buffer is…
|
/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/zstd/lib/compress/ |
H A D | zstdmt_compress.h | 91 * Probe the oldest active job (not yet entirely flushed) and check its output buffer. 93 * or, it means oldest job is still active, but everything produced has been flushed so far, 94 * therefore flushing is limited by speed of oldest job. */
|
/freebsd/contrib/opencsd/decoder/source/etmv3/ |
H A D | trc_pkt_elem_etmv3.cpp | 518 uint32_t bitpattern = m_pkt_data.atom.En_bits; // arranged LSBit oldest, MSbit newest in getAtomStr() 524 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr() 535 oss << ((bitpattern & 0x1) ? "WE" : "WN"); // in spec read L->R, oldest->newest in getAtomStr() 544 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr() 553 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr()
|
/freebsd/contrib/unbound/services/cache/ |
H A D | infra.c | 1005 * oldest to accommodate. Else return none. */ 1009 int i, oldest; in infra_rate_find_second_or_none() local 1015 /* remove oldest timestamp, and insert it at t with 0 qps */ in infra_rate_find_second_or_none() 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() 1026 /** find the second and return its rate counter, if none, remove oldest to
|
/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/lib/libsys/ |
H A D | mq_receive.2 | 66 system call receives oldest of the highest priority message(s) from the 111 system call will receive the oldest of the highest priority messages from the
|
/freebsd/sys/kern/ |
H A D | subr_filter.c | 315 * is because the oldest worst value is in tick_filter_clock() 322 * if its your oldest measurement). in tick_filter_clock() 346 * is because the oldest worst value is in tick_filter_clock_small() 353 * if its your oldest measurement). in tick_filter_clock_small()
|
/freebsd/contrib/opencsd/decoder/source/ptm/ |
H A D | trc_pkt_elem_ptm.cpp | 210 uint32_t bitpattern = atom.En_bits; // arranged LSBit oldest, MSbit newest in getAtomStr() 215 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr() 225 oss << ((bitpattern & 0x1) ? "E" : "N"); // in spec read L->R, oldest->newest in getAtomStr()
|
/freebsd/sys/contrib/openzfs/man/man8/ |
H A D | zfs-destroy.8 | 127 filesystem's oldest or newest snapshot will be implied. 218 To keep a week's worth of snapshots, the user destroys the oldest snapshot,
|
H A D | zpool-ddtprune.8 | 30 .Nd Prunes the oldest entries from the single reference dedup table(s)
|
/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/sbin/dmesg/ |
H A D | dmesg.c | 139 /* Unwrap the circular buffer to start from the oldest data. */ in main() 164 * the oldest data comes first. The data will be preceded by \0's in main()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExceptionSpec.cpp | 549 ExceptionSpecificationType OldEST = Old->getExceptionSpecType(); in CheckEquivalentExceptionSpecImpl() local 552 assert(!isUnresolvedExceptionSpec(OldEST) && in CheckEquivalentExceptionSpecImpl() 564 if (OldCanThrow == CT_Can && OldEST != EST_Dynamic && in CheckEquivalentExceptionSpecImpl() 569 ((OldEST == EST_None && NewEST == EST_NoexceptFalse) || in CheckEquivalentExceptionSpecImpl() 570 (OldEST == EST_NoexceptFalse && NewEST == EST_None))) { in CheckEquivalentExceptionSpecImpl() 580 if (OldEST == EST_DependentNoexcept && NewEST == EST_DependentNoexcept) { in CheckEquivalentExceptionSpecImpl() 590 if (OldEST == EST_Dynamic && NewEST == EST_Dynamic) { in CheckEquivalentExceptionSpecImpl() 617 if (OldEST == EST_None && NewEST == EST_Dynamic) in CheckEquivalentExceptionSpecImpl() 619 else if (OldEST == EST_Dynamic && NewEST == EST_None) in CheckEquivalentExceptionSpecImpl() 639 if (MissingExceptionSpecification && OldEST != EST_None && in CheckEquivalentExceptionSpecImpl()
|
/freebsd/share/man/man9/ |
H A D | vfs_unmountall.9 | 42 from most recent to oldest
|
/freebsd/share/doc/papers/malloc/ |
H A D | abs.ms | 24 Malloc/free is one of the oldest parts of the C language environment
|
/freebsd/contrib/ntp/libntp/lib/isc/ |
H A D | log.c | 1235 * though the file names are 0 based, so an oldest log of log.1 in roll_log() 1551 isc_time_t oldest; in isc_log_doit() local 1558 * 'oldest' is the age of the oldest messages in isc_log_doit() 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/device-tree/Bindings/c6x/ |
H A D | emifa.txt | 22 of the oldest command in the command FIFO. Setting this field to 255
|
/freebsd/sys/contrib/openzfs/config/ |
H A D | kernel-mkdir.m4 | 2 dnl # Supported mkdir() interfaces checked newest to oldest.
|
/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()
|