Lines Matching refs:active
150 u_long active; /* bytes active */ member
676 if (big->active < big->bytes) { in handle_excess_big()
677 MASSERT_WTHUNLK((big->active & PAGE_MASK) == 0, in handle_excess_big()
681 munmap((char *)big->base + big->active, in handle_excess_big()
682 big->bytes - big->active); in handle_excess_big()
684 big->active - big->bytes); in handle_excess_big()
685 big->bytes = big->active; in handle_excess_big()
1016 big->active = size; in _slabmemalign()
1017 if (big->active < big->bytes) { in _slabmemalign()
1019 big->bytes - big->active); in _slabmemalign()
1041 big->active = size; in _slabmemalign()
1171 big->active = size; in _slaballoc()
1174 if (big->active < big->bytes) { in _slaballoc()
1176 big->bytes - big->active); in _slaballoc()
1402 if (big->active != size) { in _slabrealloc()
1404 big->active - in _slabrealloc()
1407 big->active = size; in _slabrealloc()
1443 big->active - in _slabrealloc()
1448 big->active = size; in _slabrealloc()
1476 atomic_add_long(&excess_alloc, big->active - in _slabrealloc()
1621 atomic_add_long(&excess_alloc, big->active - in _slabfree()