Lines Matching refs:resident
217 base->resident += PAGE_CEILING((uintptr_t)addr + size) - in base_extent_bump_alloc_post()
219 assert(base->allocated <= base->resident); in base_extent_bump_alloc_post()
220 assert(base->resident <= base->mapped); in base_extent_bump_alloc_post()
328 base->resident += PAGE_CEILING(sizeof(base_block_t)); in base_extent_alloc()
337 assert(base->allocated <= base->resident); in base_extent_alloc()
338 assert(base->resident <= base->mapped); in base_extent_alloc()
380 base->resident = PAGE_CEILING(sizeof(base_block_t)); in base_new()
385 assert(base->allocated <= base->resident); in base_new()
386 assert(base->resident <= base->mapped); in base_new()
481 base_stats_get(tsdn_t *tsdn, base_t *base, size_t *allocated, size_t *resident, in base_stats_get() argument
486 assert(base->allocated <= base->resident); in base_stats_get()
487 assert(base->resident <= base->mapped); in base_stats_get()
489 *resident = base->resident; in base_stats_get()