| /freebsd-13-stable/usr.sbin/pmcannotate/ |
| HD | pmcannotate.c | 84 static void agg_destroy(struct aggent *agg) __unused; 100 static void general_printasm(FILE *fp, struct aggent *agg); 101 static int general_printc(FILE *fp, struct aggent *agg); 102 static int printblock(FILE *fp, struct aggent *agg); 155 struct aggent *agg; in agg_create() local 157 agg = calloc(1, sizeof(struct aggent)); in agg_create() 158 if (agg == NULL) in agg_create() 160 agg->ag_name = strdup(name); in agg_create() 161 if (agg->ag_name == NULL) { in agg_create() 162 free(agg); in agg_create() [all …]
|
| /freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| HD | dt_map.c | 350 dtrace_aggdesc_t *agg, *nagg; local 352 if ((agg = malloc(sizeof (dtrace_aggdesc_t))) == NULL) 355 bzero(agg, sizeof (dtrace_aggdesc_t)); 356 agg->dtagd_id = id; 357 agg->dtagd_nrecs = 1; 360 if (dt_ioctl(dtp, DTRACEIOC_AGGDESC, agg) == -1) { 362 if (dt_ioctl(dtp, DTRACEIOC_AGGDESC, &agg) == -1) { 365 free(agg); 369 if (DTRACE_SIZEOF_AGGDESC(agg) != sizeof (*agg)) { 374 if ((nagg = malloc(DTRACE_SIZEOF_AGGDESC(agg))) != NULL) [all …]
|
| HD | dt_aggregate.c | 418 dtrace_aggdesc_t *agg = ent->dtahe_data.dtada_desc; in dt_aggregate_aggvarid() local 420 dtrace_recdesc_t *rec = agg->dtagd_rec; in dt_aggregate_aggvarid() 427 if (agg->dtagd_varid != DTRACE_AGGVARIDNONE) in dt_aggregate_aggvarid() 428 return (agg->dtagd_varid); in dt_aggregate_aggvarid() 430 agg->dtagd_varid = *((dtrace_aggvarid_t *)(uintptr_t)(data + in dt_aggregate_aggvarid() 433 return (agg->dtagd_varid); in dt_aggregate_aggvarid() 447 dtrace_aggdesc_t *agg; local 510 if ((rval = dt_aggid_lookup(dtp, id, &agg)) != 0) 514 size = agg->dtagd_size; 517 for (j = 0; j < agg->dtagd_nrecs - 1; j++) { [all …]
|
| HD | dt_consume.c | 1620 dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_normalize_agg() local 1623 if (agg->dtagd_nrecs == 0) in dt_normalize_agg() 1626 if (agg->dtagd_varid != id) in dt_normalize_agg() 1688 dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_denormalize_agg() local 1691 if (agg->dtagd_nrecs == 0) in dt_denormalize_agg() 1694 if (agg->dtagd_varid != id) in dt_denormalize_agg() 1703 dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_clear_agg() local 1706 if (agg->dtagd_nrecs == 0) in dt_clear_agg() 1709 if (agg->dtagd_varid != id) in dt_clear_agg() 1724 dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_trunc_agg() local [all …]
|
| HD | dt_printf.c | 1356 dtrace_aggdesc_t *agg; in dt_printf_format() local 1466 agg = aggdata->dtada_desc; in dt_printf_format() 1479 rec = &agg->dtagd_rec[aggrec]; in dt_printf_format() 1988 const dtrace_aggdesc_t *agg = adp->dtada_desc; in dt_fprinta() local 1989 const dtrace_recdesc_t *recp = &agg->dtagd_rec[0]; in dt_fprinta() 1990 uint_t nrecs = agg->dtagd_nrecs; in dt_fprinta() 2007 ((dtrace_aggdesc_t *)agg)->dtagd_flags |= DTRACE_AGD_PRINTED; in dt_fprinta() 2016 const dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_fprintas() local 2017 const dtrace_recdesc_t *rec = &agg->dtagd_rec[1]; in dt_fprintas() 2018 uint_t nrecs = agg->dtagd_nrecs - 1; in dt_fprintas() [all …]
|
| HD | 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-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/ |
| HD | 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-13-stable/sys/cddl/dev/dtrace/ |
| HD | 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-13-stable/sys/contrib/dev/iwlwifi/mvm/ |
| HD | rs.c | 43 iwl_mvm_update_frame_stats(struct iwl_mvm *mvm, u32 rate, bool agg) in iwl_mvm_update_frame_stats() argument
|
| HD | 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()
|
| HD | 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()
|
| HD | mld-sta.c | 1117 link_sta->agg.max_rc_amsdu_len = 1; in iwl_mvm_mld_update_sta_links()
|
| HD | mvm.h | 2048 void iwl_mvm_update_frame_stats(struct iwl_mvm *mvm, u32 rate, bool agg);
|
| HD | mac80211.c | 3718 link_sta->agg.max_rc_amsdu_len = 1; in iwl_mvm_sta_state_notexist_to_none()
|
| /freebsd-13-stable/cddl/contrib/opensolaris/cmd/lockstat/ |
| HD | 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-13-stable/cddl/usr.sbin/dtrace/tests/common/pointers/ |
| HD | Makefile | 12 err.D_ADDROF_VAR.agg.d \
|
| /freebsd-13-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/ |
| HD | dtrace.c | 2539 dtrace_aggregate(dtrace_aggregation_t *agg, dtrace_buffer_t *dbuf, in dtrace_aggregate() argument 2542 dtrace_recdesc_t *rec = &agg->dtag_action.dta_rec; in dtrace_aggregate() 2556 if (!agg->dtag_hasarg) { in dtrace_aggregate() 2568 action = agg->dtag_action.dta_kind - DTRACEACT_AGGREGATION; in dtrace_aggregate() 2569 size = rec->dtrd_offset - agg->dtag_base; in dtrace_aggregate() 2573 data = dbuf->dtb_tomax + offset + agg->dtag_base; in dtrace_aggregate() 2621 ASSERT(agg->dtag_first != NULL); in dtrace_aggregate() 2622 ASSERT(agg->dtag_first->dta_intuple); in dtrace_aggregate() 2633 for (act = agg->dtag_first; act->dta_intuple; act = act->dta_next) { in dtrace_aggregate() 2634 i = act->dta_rec.dtrd_offset - agg->dtag_base; in dtrace_aggregate() [all …]
|
| /freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/ |
| HD | dtrace.c | 962 const dtrace_aggdata_t *agg = bufdata->dtbda_aggdata; local 983 } else if (agg != NULL) { 984 pd = agg->dtada_pdesc; 1031 if (agg != NULL) { 1041 data = (uint8_t *)agg->dtada_data + rec->dtrd_offset; 1059 if (agg != NULL) { 1060 dtrace_aggdesc_t *desc = agg->dtada_desc;
|
| /freebsd-13-stable/sys/contrib/dev/iwlwifi/fw/api/ |
| HD | stats.h | 223 struct mvm_statistics_tx_non_phy_agg agg; member 229 struct mvm_statistics_tx_non_phy_agg agg; member
|
| /freebsd-13-stable/sys/dev/iwn/ |
| HD | if_iwnvar.h | 147 } agg[IEEE80211_TID_SIZE]; member
|
| HD | if_iwn.c | 3228 txs->short_retries = wn->agg[tid].short_retries; in iwn_agg_tx_complete() 3234 wn->agg[tid].short_retries = 0; in iwn_agg_tx_complete() 3268 (uintmax_t)le64toh(ba->bitmap), (uintmax_t)wn->agg[tid].bitmap, in iwn_rx_compressed_ba() 3269 wn->agg[tid].startidx); in iwn_rx_compressed_ba() 3271 if (wn->agg[tid].bitmap == 0) in iwn_rx_compressed_ba() 3274 shift = wn->agg[tid].startidx - ((le16toh(ba->seq) >> 4) & 0xff); in iwn_rx_compressed_ba() 3290 bitmap &= wn->agg[tid].bitmap; in iwn_rx_compressed_ba() 3291 wn->agg[tid].bitmap = 0; in iwn_rx_compressed_ba() 3293 for (i = wn->agg[tid].startidx; in iwn_rx_compressed_ba() 3943 wn->agg[tid].startidx = start; in iwn_ampdu_tx_done() [all …]
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| HD | CGExprConstant.cpp | 1679 if (auto agg = dyn_cast<llvm::ConstantAggregate>(init)) { in findLocations() local 1680 for (unsigned i = 0, e = agg->getNumOperands(); i != e; ++i) { in findLocations() 1684 findLocations(agg->getOperand(i)); in findLocations()
|
| /freebsd-13-stable/sys/compat/linuxkpi/common/include/net/ |
| HD | mac80211.h | 686 struct ieee80211_sta_agg agg; member
|
| /freebsd-13-stable/sys/dev/iwm/ |
| HD | if_iwmreg.h | 3222 struct iwm_statistics_tx_non_phy_agg agg; member
|
| /freebsd-13-stable/sys/contrib/dev/rtw88/ |
| HD | fw.c | 121 sta->deflink.agg.max_rc_amsdu_len = get_max_amsdu_len(bit_rate); in rtw_fw_ra_report_iter()
|