Home
last modified time | relevance | path

Searched refs:z_NMax (Results 1 – 5 of 5) sorted by relevance

/dragonfly/sys/kern/
HDkern_slaballoc.c735 if (z->z_NFree == z->z_NMax && z->z_RCount == 0 && in check_zone_free()
1029 if (z->z_UIndex + 1 != z->z_NMax) in _kmalloc_debug()
1099 z->z_NMax = (ZoneSize - off) / size; in _kmalloc_debug()
1100 z->z_NFree = z->z_NMax - 1; in _kmalloc_debug()
1102 z->z_UIndex = z->z_UEndIndex = slgd->JunkIndex % z->z_NMax; in _kmalloc_debug()
1660 KASSERT(bitdex >= 0 && bitdex < z->z_NMax, in chunk_mark_allocated()
1676 KASSERT(bitdex >= 0 && bitdex < z->z_NMax, in chunk_mark_free()
/dragonfly/sys/sys/
HDslaballoc.h99 int z_NMax; /* maximum free chunks */ member
/dragonfly/test/debug/
HDslabinfo.c176 slz.z_NFree, slz.z_NMax, slz.z_RCount); in slzonedump()
HDzallocinfo.c173 zone.z_ChunkSize, zone.z_NMax); in dumpslab()
/dragonfly/lib/libc/stdlib/
HDnmalloc.c187 int z_NMax; /* maximum free chunks */ member
1245 z->z_NMax = (ZoneSize - off) / size; in _slaballoc()
1246 z->z_NFree = z->z_NMax; in _slaballoc()
1326 if (++z->z_UIndex == z->z_NMax) in _slaballoc()
1691 if (z->z_NFree == z->z_NMax) { in _slabfree()