/freebsd/usr.sbin/pmcannotate/ |
H A D | 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); 157 struct aggent *agg; in agg_create() local 159 agg = calloc(1, sizeof(struct aggent)); in agg_create() 160 if (agg == NULL) in agg_create() 162 agg->ag_name = strdup(name); in agg_create() 163 if (agg->ag_name == NULL) { in agg_create() 164 free(agg); in agg_create() [all …]
|
/freebsd/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/cddl/contrib/opensolaris/lib/libdtrace/common/ |
H A D | 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 …]
|
H A D | dt_aggregate.c | 419 dtrace_aggdesc_t *agg = ent->dtahe_data.dtada_desc; in dt_aggregate_aggvarid() local 421 dtrace_recdesc_t *rec = agg->dtagd_rec; in dt_aggregate_aggvarid() 428 if (agg->dtagd_varid != DTRACE_AGGVARIDNONE) in dt_aggregate_aggvarid() 429 return (agg->dtagd_varid); in dt_aggregate_aggvarid() 431 agg->dtagd_varid = *((dtrace_aggvarid_t *)(uintptr_t)(data + in dt_aggregate_aggvarid() 434 return (agg->dtagd_varid); in dt_aggregate_aggvarid() 448 dtrace_aggdesc_t *agg; local 516 if ((rval = dt_aggid_lookup(dtp, id, &agg)) != 0) 520 size = agg->dtagd_size; 523 for (j = 0; j < agg->dtagd_nrecs - 1; j++) { [all …]
|
H A D | dt_consume.c | 2278 dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_normalize_agg() local 2281 if (agg->dtagd_nrecs == 0) in dt_normalize_agg() 2284 if (agg->dtagd_varid != id) in dt_normalize_agg() 2346 dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_denormalize_agg() local 2349 if (agg->dtagd_nrecs == 0) in dt_denormalize_agg() 2352 if (agg->dtagd_varid != id) in dt_denormalize_agg() 2361 dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_clear_agg() local 2364 if (agg->dtagd_nrecs == 0) in dt_clear_agg() 2367 if (agg->dtagd_varid != id) in dt_clear_agg() 2382 dtrace_aggdesc_t *agg = aggdata->dtada_desc; in dt_trunc_agg() local [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 | 725 const dtrace_recdesc_t *rec, const dtrace_aggdata_t *agg, uint32_t flags) in dt_buffered_flush() argument 736 data.dtbda_aggdata = agg; in dt_buffered_flush()
|
/freebsd/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/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/sys/contrib/dev/iwlwifi/mvm/ |
H A D | rs.c | 50 iwl_mvm_update_frame_stats(struct iwl_mvm *mvm, u32 rate, bool agg) in iwl_mvm_update_frame_stats() argument 98 if (agg) in iwl_mvm_update_frame_stats()
|
H A D | rs-fw.c | 491 if (link_sta->agg.max_amsdu_len < size) { in iwl_mvm_tlc_update_notif() 493 * In debug link_sta->agg.max_amsdu_len < size in iwl_mvm_tlc_update_notif() 503 link_sta->agg.max_rc_amsdu_len = mvmsta->max_amsdu_len; in iwl_mvm_tlc_update_notif() 507 link_sta->agg.max_tid_amsdu_len[i] = in iwl_mvm_tlc_update_notif() 514 link_sta->agg.max_tid_amsdu_len[i] = 1; in iwl_mvm_tlc_update_notif() 575 * agg is offloaded so we need to assume that agg in rs_fw_get_max_amsdu_len() 661 link_sta->agg.max_amsdu_len = max_amsdu_len; in iwl_mvm_rs_fw_rate_init()
|
H A D | debugfs.c | 463 mvm_link_sta->orig_amsdu_len = link_sta->agg.max_amsdu_len; in iwl_dbgfs_amsdu_len_write() 464 link_sta->agg.max_amsdu_len = amsdu_len; in iwl_dbgfs_amsdu_len_write() 465 link_sta->agg.max_amsdu_len = amsdu_len; in iwl_dbgfs_amsdu_len_write() 466 for (i = 0; i < ARRAY_SIZE(link_sta->agg.max_tid_amsdu_len); i++) in iwl_dbgfs_amsdu_len_write() 467 link_sta->agg.max_tid_amsdu_len[i] = amsdu_len; in iwl_dbgfs_amsdu_len_write() 469 link_sta->agg.max_amsdu_len = mvm_link_sta->orig_amsdu_len; in iwl_dbgfs_amsdu_len_write() 489 link_sta->agg.max_amsdu_len); in iwl_dbgfs_disable_power_off_read() 1116 pos += scnprintf(pos, endpos - pos, "MPDUs agg\t:\t%d\n", in iwl_dbgfs_fw_rx_stats_read()
|
H A D | mld-sta.c | 1157 link_sta->agg.max_rc_amsdu_len = 1; in iwl_mvm_mld_update_sta_links()
|
/freebsd/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/sys/modules/mt76/core/ |
H A D | Makefile | 4 SRCS= mac80211.c mmio.c util.c dma.c eeprom.c tx.c agg-rx.c mcu.c
|
/freebsd/sys/cddl/contrib/opensolaris/uts/common/dtrace/ |
H A D | dtrace.c | 2540 dtrace_aggregate(dtrace_aggregation_t *agg, dtrace_buffer_t *dbuf, in dtrace_aggregate() argument 2543 dtrace_recdesc_t *rec = &agg->dtag_action.dta_rec; in dtrace_aggregate() 2557 if (!agg->dtag_hasarg) { in dtrace_aggregate() 2569 action = agg->dtag_action.dta_kind - DTRACEACT_AGGREGATION; in dtrace_aggregate() 2570 size = rec->dtrd_offset - agg->dtag_base; in dtrace_aggregate() 2574 data = dbuf->dtb_tomax + offset + agg->dtag_base; in dtrace_aggregate() 2622 ASSERT(agg->dtag_first != NULL); in dtrace_aggregate() 2623 ASSERT(agg->dtag_first->dta_intuple); in dtrace_aggregate() 2634 for (act = agg->dtag_first; act->dta_intuple; act = act->dta_next) { in dtrace_aggregate() 2635 i = act->dta_rec.dtrd_offset - agg->dtag_base; in dtrace_aggregate() [all …]
|
/freebsd/cddl/usr.sbin/dtrace/tests/common/pointers/ |
H A D | Makefile | 11 err.D_ADDROF_VAR.agg.d \
|
/freebsd/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/sys/contrib/dev/iwlwifi/fw/api/ |
H A D | stats.h | 224 struct mvm_statistics_tx_non_phy_agg agg; 230 struct mvm_statistics_tx_non_phy_agg agg; 223 struct mvm_statistics_tx_non_phy_agg agg; global() member 229 struct mvm_statistics_tx_non_phy_agg agg; global() member
|
/freebsd/sys/dev/iwn/ |
H A D | if_iwnvar.h | 147 } agg[IEEE80211_TID_SIZE]; member
|
H A D | if_iwn.c | 3222 txs->short_retries = wn->agg[tid].short_retries; in iwn_agg_tx_complete() 3228 wn->agg[tid].short_retries = 0; in iwn_agg_tx_complete() 3262 (uintmax_t)le64toh(ba->bitmap), (uintmax_t)wn->agg[tid].bitmap, in iwn_rx_compressed_ba() 3263 wn->agg[tid].startidx); in iwn_rx_compressed_ba() 3265 if (wn->agg[tid].bitmap == 0) in iwn_rx_compressed_ba() 3268 shift = wn->agg[tid].startidx - ((le16toh(ba->seq) >> 4) & 0xff); in iwn_rx_compressed_ba() 3284 bitmap &= wn->agg[tid].bitmap; in iwn_rx_compressed_ba() 3285 wn->agg[tid].bitmap = 0; in iwn_rx_compressed_ba() 3287 for (i = wn->agg[tid].startidx; in iwn_rx_compressed_ba() 3937 wn->agg[tid].startidx = start; in iwn_ampdu_tx_done() [all …]
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_80211.c | 424 sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_7935; in lkpi_sta_sync_ht_from_ni() 426 sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_3839; in lkpi_sta_sync_ht_from_ni() 427 sta->deflink.agg.max_rc_amsdu_len = IEEE80211_MAX_MPDU_LEN_HT_BA; in lkpi_sta_sync_ht_from_ni() 429 for (i = 0; i < nitems(sta.deflink.agg.max_tid_amsdu_len); i++) { in lkpi_sta_sync_ht_from_ni() 430 sta->deflink.agg.max_tid_amsdu_len[j] = ; in lkpi_sta_sync_ht_from_ni() 496 sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_11454; in lkpi_sta_sync_vht_from_ni() 499 sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_7991; in lkpi_sta_sync_vht_from_ni() 503 sta->deflink.agg.max_amsdu_len = IEEE80211_MAX_MPDU_LEN_VHT_3895; in lkpi_sta_sync_vht_from_ni()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | 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/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/sys/compat/linuxkpi/common/include/net/ |
H A D | mac80211.h | 762 struct ieee80211_sta_agg agg; member
|