| /freebsd-14.2/usr.sbin/pmcannotate/ |
| H A D | pmcannotate.c | 155 struct aggent *agg; in agg_create() local 158 if (agg == NULL) in agg_create() 162 free(agg); in agg_create() 167 agg->ag_oend = end; in agg_create() 168 return (agg); in agg_create() 179 free(agg->ag_name); in agg_destroy() 180 free(agg); in agg_destroy() 203 if (agg == NULL) in asmparse() 212 agg->ag_name, PERCSAMP(agg->ag_nsamples)); in asmparse() 242 if (agg == NULL) in cparse() [all …]
|
| /freebsd-14.2/cddl/usr.sbin/dtrace/tests/common/oformat/ |
| H A D | Makefile | 8 tst.agg.avg.ksh \ 9 tst.agg.count.ksh \ 10 tst.agg.llquantize.ksh \ 11 tst.agg.lquantize.ksh \ 12 tst.agg.max.ksh \ 13 tst.agg.min.ksh \ 14 tst.agg.quantize.ksh \ 15 tst.agg.stddev.ksh \ 16 tst.agg.sum.ksh \
|
| /freebsd-14.2/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | dt_map.c | 350 dtrace_aggdesc_t *agg, *nagg; local 356 agg->dtagd_id = id; 357 agg->dtagd_nrecs = 1; 365 free(agg); 369 if (DTRACE_SIZEOF_AGGDESC(agg) != sizeof (*agg)) { 375 bcopy(agg, nagg, sizeof (*agg)); 377 free(agg); 379 if ((agg = nagg) == NULL) 390 free(agg); 420 free(agg); [all …]
|
| H A D | dt_aggregate.c | 429 return (agg->dtagd_varid); in dt_aggregate_aggvarid() 434 return (agg->dtagd_varid); in dt_aggregate_aggvarid() 448 dtrace_aggdesc_t *agg; local 520 size = agg->dtagd_size; 524 rec = &agg->dtagd_rec[j]; 583 rec = &agg->dtagd_rec[agg->dtagd_nrecs - 1]; 633 rec = &agg->dtagd_rec[agg->dtagd_nrecs - 1]; 709 offs += agg->dtagd_size; 1353 rec = &agg->dtagd_rec[agg->dtagd_nrecs - 1]; 1457 rec = &agg->dtagd_rec[agg->dtagd_nrecs - 1]; [all …]
|
| H A D | dt_consume.c | 2281 if (agg->dtagd_nrecs == 0) in dt_normalize_agg() 2284 if (agg->dtagd_varid != id) in dt_normalize_agg() 2349 if (agg->dtagd_nrecs == 0) in dt_denormalize_agg() 2352 if (agg->dtagd_varid != id) in dt_denormalize_agg() 2364 if (agg->dtagd_nrecs == 0) in dt_clear_agg() 2367 if (agg->dtagd_varid != id) in dt_clear_agg() 2385 if (agg->dtagd_nrecs == 0) in dt_trunc_agg() 2388 if (agg->dtagd_varid != id) in dt_trunc_agg() 2727 rec = &agg->dtagd_rec[i]; in dt_format_aggs() 2760 agg = aggdata->dtada_desc; in dt_format_aggs() [all …]
|
| H A D | dt_printf.c | 1355 dtrace_aggdesc_t *agg; in dt_printf_format() local 1465 agg = aggdata->dtada_desc; in dt_printf_format() 1478 rec = &agg->dtagd_rec[aggrec]; in dt_printf_format() 1987 const dtrace_aggdesc_t *agg = adp->dtada_desc; in dt_fprinta() local 1988 const dtrace_recdesc_t *recp = &agg->dtagd_rec[0]; in dt_fprinta() 1989 uint_t nrecs = agg->dtagd_nrecs; in dt_fprinta() 2006 ((dtrace_aggdesc_t *)agg)->dtagd_flags |= DTRACE_AGD_PRINTED; in dt_fprinta() 2015 const dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_fprintas() local 2016 const dtrace_recdesc_t *rec = &agg->dtagd_rec[1]; in dt_fprintas() 2017 uint_t nrecs = agg->dtagd_nrecs - 1; in dt_fprintas() [all …]
|
| H A D | dt_subr.c | 711 const dtrace_recdesc_t *rec, const dtrace_aggdata_t *agg, uint32_t flags) in dt_buffered_flush() argument 722 data.dtbda_aggdata = agg; in dt_buffered_flush()
|
| /freebsd-14.2/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/ |
| H A D | TestFunctionLookup.java | 61 for (Aggregation agg : a.getAggregations()) { in main() 62 for (Tuple tuple : agg.asMap().keySet()) { in main() 95 for (Aggregation agg : a.getAggregations()) { in main() 96 for (Tuple tuple : agg.asMap().keySet()) { in main()
|
| /freebsd-14.2/sys/cddl/dev/dtrace/ |
| H A D | dtrace_ioctl.c | 114 dtrace_aggregation_t *agg; in dtrace_ioctl() local 129 if ((agg = dtrace_aggid2agg(state, aggdesc.dtagd_id)) == NULL) { in dtrace_ioctl() 134 aggdesc.dtagd_epid = agg->dtag_ecb->dte_epid; in dtrace_ioctl() 139 offs = agg->dtag_base; in dtrace_ioctl() 140 lrec = &agg->dtag_action.dta_rec; in dtrace_ioctl() 143 for (act = agg->dtag_first; ; act = act->dta_next) { in dtrace_ioctl() 156 ASSERT(agg->dtag_hasarg); in dtrace_ioctl() 162 if (act == &agg->dtag_action) in dtrace_ioctl() 181 for (act = agg->dtag_first; ; act = act->dta_next) { in dtrace_ioctl() 189 ASSERT(agg->dtag_hasarg); in dtrace_ioctl() [all …]
|
| /freebsd-14.2/sys/contrib/dev/iwlwifi/mvm/ |
| H A D | rs.c | 43 iwl_mvm_update_frame_stats(struct iwl_mvm *mvm, u32 rate, bool agg) in iwl_mvm_update_frame_stats() argument
|
| H A D | rs-fw.c | 485 if (link_sta->agg.max_amsdu_len < size) { in iwl_mvm_tlc_update_notif() 497 link_sta->agg.max_rc_amsdu_len = mvmsta->max_amsdu_len; in iwl_mvm_tlc_update_notif() 501 link_sta->agg.max_tid_amsdu_len[i] = in iwl_mvm_tlc_update_notif() 508 link_sta->agg.max_tid_amsdu_len[i] = 1; in iwl_mvm_tlc_update_notif() 652 sta->deflink.agg.max_amsdu_len = max_amsdu_len; in iwl_mvm_rs_fw_rate_init()
|
| H A D | debugfs.c | 456 mvm_link_sta->orig_amsdu_len = link_sta->agg.max_amsdu_len; in iwl_dbgfs_amsdu_len_write() 457 link_sta->agg.max_amsdu_len = amsdu_len; in iwl_dbgfs_amsdu_len_write() 458 link_sta->agg.max_amsdu_len = amsdu_len; in iwl_dbgfs_amsdu_len_write() 459 for (i = 0; i < ARRAY_SIZE(link_sta->agg.max_tid_amsdu_len); i++) in iwl_dbgfs_amsdu_len_write() 460 link_sta->agg.max_tid_amsdu_len[i] = amsdu_len; in iwl_dbgfs_amsdu_len_write() 462 link_sta->agg.max_amsdu_len = mvm_link_sta->orig_amsdu_len; in iwl_dbgfs_amsdu_len_write() 482 link_sta->agg.max_amsdu_len); in iwl_dbgfs_amsdu_len_read()
|
| H A D | mld-sta.c | 1117 link_sta->agg.max_rc_amsdu_len = 1; in iwl_mvm_mld_update_sta_links()
|
| /freebsd-14.2/sys/modules/mt76/core/ |
| H A D | Makefile | 5 SRCS= mac80211.c mmio.c util.c dma.c eeprom.c tx.c agg-rx.c mcu.c
|
| /freebsd-14.2/cddl/contrib/opensolaris/cmd/lockstat/ |
| H A D | lockstat.c | 885 dtrace_optval_t val, status, agg; in status_init() local 894 if (dtrace_getopt(g_dtp, "aggrate", &agg) == -1) in status_init() 904 val = status < agg ? status : agg; in status_init() 985 count_aggregate(const dtrace_aggdata_t *agg, void *arg) in count_aggregate() argument 993 process_aggregate(const dtrace_aggdata_t *agg, void *arg) in process_aggregate() argument 995 const dtrace_aggdesc_t *aggdesc = agg->dtada_desc; in process_aggregate() 996 caddr_t data = agg->dtada_data; in process_aggregate()
|
| /freebsd-14.2/cddl/usr.sbin/dtrace/tests/common/pointers/ |
| H A D | Makefile | 12 err.D_ADDROF_VAR.agg.d \
|
| /freebsd-14.2/sys/cddl/contrib/opensolaris/uts/common/dtrace/ |
| H A D | dtrace.c | 2556 if (!agg->dtag_hasarg) { in dtrace_aggregate() 11227 agg->dtag_base = aggbase; 11295 dtrace_aggregation_t *agg; local 11304 agg->dtag_ecb = ecb; 11406 agg->dtag_first = act; 11431 agg->dtag_hasarg = 1; 11469 state->dts_aggregations[(agg->dtag_id = aggid) - 1] = agg; 11480 return (&agg->dtag_action); 12023 dtrace_aggregation_t *agg; local 12032 agg->dtag_id == id); [all …]
|
| /freebsd-14.2/cddl/contrib/opensolaris/cmd/dtrace/ |
| H A D | dtrace.c | 971 const dtrace_aggdata_t *agg = bufdata->dtbda_aggdata; local 992 } else if (agg != NULL) { 993 pd = agg->dtada_pdesc; 1040 if (agg != NULL) { 1050 data = (uint8_t *)agg->dtada_data + rec->dtrd_offset; 1068 if (agg != NULL) { 1069 dtrace_aggdesc_t *desc = agg->dtada_desc;
|
| /freebsd-14.2/sys/contrib/dev/iwlwifi/fw/api/ |
| H A D | stats.h | 223 struct mvm_statistics_tx_non_phy_agg agg; member 229 struct mvm_statistics_tx_non_phy_agg agg; member
|
| /freebsd-14.2/sys/dev/iwn/ |
| H A D | if_iwnvar.h | 147 } agg[IEEE80211_TID_SIZE]; member
|
| H A D | if_iwn.c | 3233 wn->agg[tid].short_retries = 0; in iwn_agg_tx_complete() 3268 wn->agg[tid].startidx); in iwn_rx_compressed_ba() 3270 if (wn->agg[tid].bitmap == 0) in iwn_rx_compressed_ba() 3289 bitmap &= wn->agg[tid].bitmap; in iwn_rx_compressed_ba() 3290 wn->agg[tid].bitmap = 0; in iwn_rx_compressed_ba() 3292 for (i = wn->agg[tid].startidx; in iwn_rx_compressed_ba() 3942 wn->agg[tid].startidx = start; in iwn_ampdu_tx_done() 3943 wn->agg[tid].bitmap = bitmap; in iwn_ampdu_tx_done() 3944 wn->agg[tid].short_retries = rtsfailcnt; in iwn_ampdu_tx_done() 3952 i != wn->agg[tid].startidx; in iwn_ampdu_tx_done() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprConstant.cpp | 1579 if (auto agg = dyn_cast<llvm::ConstantAggregate>(init)) { in findLocations() local 1580 for (unsigned i = 0, e = agg->getNumOperands(); i != e; ++i) { in findLocations() 1584 findLocations(agg->getOperand(i)); in findLocations()
|
| /freebsd-14.2/sys/contrib/dev/mediatek/mt76/ |
| H A D | mt76_connac_mcu.c | 600 if (!sta->deflink.agg.max_amsdu_len) in mt76_connac_mcu_sta_amsdu_tlv() 607 amsdu->max_mpdu_size = sta->deflink.agg.max_amsdu_len >= in mt76_connac_mcu_sta_amsdu_tlv()
|
| /freebsd-14.2/sys/compat/linuxkpi/common/include/net/ |
| H A D | mac80211.h | 740 struct ieee80211_sta_agg agg; member
|
| /freebsd-14.2/sys/contrib/dev/mediatek/mt76/mt7915/ |
| H A D | mcu.c | 957 if (!sta->deflink.agg.max_amsdu_len) in mt7915_mcu_sta_amsdu_tlv() 966 switch (sta->deflink.agg.max_amsdu_len) { in mt7915_mcu_sta_amsdu_tlv()
|