Searched refs:agg (Results 1 - 16 of 16) sorted by relevance

/freebsd-12-stable/usr.sbin/pmcannotate/
H A Dpmcannotate.c86 static void agg_destroy(struct aggent *agg) __unused;
102 static void general_printasm(FILE *fp, struct aggent *agg);
103 static int general_printc(FILE *fp, struct aggent *agg);
104 static int printblock(FILE *fp, struct aggent *agg);
157 struct aggent *agg; local
159 agg = calloc(1, sizeof(struct aggent));
160 if (agg == NULL)
162 agg->ag_name = strdup(name);
163 if (agg->ag_name == NULL) {
164 free(agg);
178 agg_destroy(struct aggent *agg) argument
196 struct aggent *agg; local
235 struct aggent *agg; local
314 struct aggent *agg, *tmpagg; local
332 struct aggent *agg; local
427 struct aggent *agg; local
519 general_printasm(FILE *fp, struct aggent *agg) argument
554 general_printc(FILE *fp, struct aggent *agg) argument
577 printblock(FILE *fp, struct aggent *agg) argument
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_map.c350 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)) {
[all...]
H A Ddt_aggregate.c418 dtrace_aggdesc_t *agg = ent->dtahe_data.dtada_desc; local
420 dtrace_recdesc_t *rec = agg->dtagd_rec;
427 if (agg->dtagd_varid != DTRACE_AGGVARIDNONE)
428 return (agg->dtagd_varid);
430 agg->dtagd_varid = *((dtrace_aggvarid_t *)(uintptr_t)(data +
433 return (agg->dtagd_varid);
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
1342 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1400 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1444 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1513 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1814 dtrace_aggdesc_t *agg; local
[all...]
H A Ddt_consume.c1620 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1623 if (agg->dtagd_nrecs == 0)
1626 if (agg->dtagd_varid != id)
1688 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1691 if (agg->dtagd_nrecs == 0)
1694 if (agg->dtagd_varid != id)
1703 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1706 if (agg->dtagd_nrecs == 0)
1709 if (agg->dtagd_varid != id)
1724 dtrace_aggdesc_t *agg local
1813 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
1965 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
2044 dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
[all...]
H A Ddt_subr.c711 const dtrace_recdesc_t *rec, const dtrace_aggdata_t *agg, uint32_t flags)
722 data.dtbda_aggdata = agg;
710 dt_buffered_flush(dtrace_hdl_t *dtp, dtrace_probedata_t *pdata, const dtrace_recdesc_t *rec, const dtrace_aggdata_t *agg, uint32_t flags) argument
H A Ddt_printf.c1076 xyerror(D_TYPE_ERR, "failed to lookup agg type %s\n", aggtype);
1349 dtrace_aggdesc_t *agg; local
1459 agg = aggdata->dtada_desc;
1472 rec = &agg->dtagd_rec[aggrec];
1981 const dtrace_aggdesc_t *agg = adp->dtada_desc; local
1982 const dtrace_recdesc_t *recp = &agg->dtagd_rec[0];
1983 uint_t nrecs = agg->dtagd_nrecs;
2000 ((dtrace_aggdesc_t *)agg)->dtagd_flags |= DTRACE_AGD_PRINTED;
2009 const dtrace_aggdesc_t *agg = aggdata->dtada_desc; local
2010 const dtrace_recdesc_t *rec = &agg
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestFunctionLookup.java61 for (Aggregation agg : a.getAggregations()) {
62 for (Tuple tuple : agg.asMap().keySet()) {
95 for (Aggregation agg : a.getAggregations()) {
96 for (Tuple tuple : agg.asMap().keySet()) {
/freebsd-12-stable/cddl/usr.sbin/dtrace/tests/common/pointers/
H A DMakefile13 err.D_ADDROF_VAR.agg.d \
/freebsd-12-stable/sys/cddl/dev/dtrace/
H A Ddtrace_ioctl.c116 dtrace_aggregation_t *agg; local
131 if ((agg = dtrace_aggid2agg(state, aggdesc.dtagd_id)) == NULL) {
136 aggdesc.dtagd_epid = agg->dtag_ecb->dte_epid;
141 offs = agg->dtag_base;
142 lrec = &agg->dtag_action.dta_rec;
145 for (act = agg->dtag_first; ; act = act->dta_next) {
158 ASSERT(agg->dtag_hasarg);
164 if (act == &agg->dtag_action)
183 for (act = agg->dtag_first; ; act = act->dta_next) {
191 ASSERT(agg
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/lockstat/
H A Dlockstat.c885 dtrace_optval_t val, status, agg; local
894 if (dtrace_getopt(g_dtp, "aggrate", &agg) == -1)
904 val = status < agg ? status : agg;
985 count_aggregate(const dtrace_aggdata_t *agg, void *arg) argument
993 process_aggregate(const dtrace_aggdata_t *agg, void *arg) argument
995 const dtrace_aggdesc_t *aggdesc = agg->dtada_desc;
996 caddr_t data = agg->dtada_data;
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/
H A Ddtrace.c961 const dtrace_aggdata_t *agg = bufdata->dtbda_aggdata; local
982 } else if (agg != NULL) {
983 pd = agg->dtada_pdesc;
1030 if (agg != NULL) {
1040 data = (uint8_t *)agg->dtada_data + rec->dtrd_offset;
1058 if (agg != NULL) {
1059 dtrace_aggdesc_t *desc = agg->dtada_desc;
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c2524 dtrace_aggregate(dtrace_aggregation_t *agg, dtrace_buffer_t *dbuf, argument
2527 dtrace_recdesc_t *rec = &agg->dtag_action.dta_rec;
2541 if (!agg->dtag_hasarg) {
2553 action = agg->dtag_action.dta_kind - DTRACEACT_AGGREGATION;
2554 size = rec->dtrd_offset - agg->dtag_base;
2558 data = dbuf->dtb_tomax + offset + agg->dtag_base;
2606 ASSERT(agg->dtag_first != NULL);
2607 ASSERT(agg->dtag_first->dta_intuple);
2618 for (act = agg->dtag_first; act->dta_intuple; act = act->dta_next) {
2619 i = act->dta_rec.dtrd_offset - agg
[all...]
/freebsd-12-stable/sys/dev/iwn/
H A Dif_iwnvar.h148 } agg[IEEE80211_TID_SIZE]; member in struct:iwn_node
H A Dif_iwn.c3230 txs->short_retries = wn->agg[tid].short_retries;
3236 wn->agg[tid].short_retries = 0;
3270 (uintmax_t)le64toh(ba->bitmap), (uintmax_t)wn->agg[tid].bitmap,
3271 wn->agg[tid].startidx);
3273 if (wn->agg[tid].bitmap == 0)
3276 shift = wn->agg[tid].startidx - ((le16toh(ba->seq) >> 4) & 0xff);
3292 bitmap &= wn->agg[tid].bitmap;
3293 wn->agg[tid].bitmap = 0;
3295 for (i = wn->agg[tid].startidx;
3945 wn->agg[ti
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp1500 if (auto agg = dyn_cast<llvm::ConstantAggregate>(init)) {
1501 for (unsigned i = 0, e = agg->getNumOperands(); i != e; ++i) {
1505 findLocations(agg->getOperand(i));
/freebsd-12-stable/sys/dev/iwm/
H A Dif_iwmreg.h3223 struct iwm_statistics_tx_non_phy_agg agg; member in struct:iwm_statistics_tx
4676 * rate table entry used for all frames in the new agg.
4727 * agg block failed in previous agg block(s).
4764 * @bt_kill_count: num of times blocked by bluetooth (unused for agg)
4766 * @failure_frame: num failures due to no ACK (unused for agg)
4767 * @initial_rate: for non-agg: rate of the successful Tx. For agg: rate of the
4769 * @wireless_media_time: for non-agg: RTS + CTS + frame tx attempts time + ACK.
4770 * for agg
[all...]

Completed in 330 milliseconds