Lines Matching defs:allocs
2791 "allocs", CTLFLAG_RD | CTLTYPE_U64 | CTLFLAG_MPSAFE,
4330 /* Avoid allocs targeting empty domains. */
4421 /* Avoid allocs targeting empty domains. */
5465 uint64_t allocs, frees, sleeps, xdomain;
5468 allocs = frees = sleeps = xdomain = 0;
5476 allocs += cache->uc_allocs;
5479 allocs += counter_u64_fetch(z->uz_allocs);
5486 *allocsp = allocs;
5869 get_uma_stats(uma_keg_t kz, uma_zone_t z, uint64_t *allocs, uint64_t *used,
5876 *allocs = counter_u64_fetch(z->uz_allocs);
5882 uma_zone_sumstat(z, cachefree, allocs, &frees, sleeps,
5890 *used = *allocs - frees;
5899 uint64_t allocs, used, sleeps, xdomain;
5939 size = get_uma_stats(kz, z, &allocs, &used,
5952 size = get_uma_stats(cur_keg, cur_zone, &allocs, &used,
5956 (uintmax_t)allocs, (uintmax_t)sleeps,
5970 uint64_t allocs, frees;
5977 uma_zone_sumstat(z, &cachefree, &allocs, &frees, NULL, NULL);
5982 (intmax_t)(allocs - frees), cachefree,
5983 (uintmax_t)allocs, z->uz_bucket_size);