Lines Matching defs:aggid
2626 * include the aggid in the hashing (but we will store it as part of
11302 dtrace_aggid_t aggid;
11440 aggid = (dtrace_aggid_t)(uintptr_t)vmem_alloc(state->dts_aggid_arena, 1,
11443 aggid = alloc_unr(state->dts_aggid_arena);
11446 if (aggid - 1 >= state->dts_naggregations) {
11452 ASSERT(aggid == state->dts_naggregations + 1);
11470 ASSERT(state->dts_aggregations[aggid - 1] == NULL);
11471 state->dts_aggregations[(agg->dtag_id = aggid) - 1] = agg;
11490 dtrace_aggid_t aggid = agg->dtag_id;
11494 vmem_free(state->dts_aggid_arena, (void *)(uintptr_t)aggid, 1);
11496 free_unr(state->dts_aggid_arena, aggid);
11499 ASSERT(state->dts_aggregations[aggid - 1] == agg);
11500 state->dts_aggregations[aggid - 1] = NULL;