Home
last modified time | relevance | path

Searched refs:z_wired_max (Results 1 – 3 of 3) sorted by relevance

/xnu-11215.1.10/osfmk/kern/
H A Dzalloc_internal.h354 uint32_t z_wired_max; /* how large can this zone grow */ member
746 return zone->z_wired_max != ~0u; in zone_exhaustible()
753 return zone->z_wired_cur >= zone->z_wired_max; in zone_exhausted()
H A Dzalloc.c3443 return z->z_wired_cur * 8 >= z->z_wired_max * 7; in zleak_should_enable_for_zone()
3458 return z->z_wired_cur * 8 < z->z_wired_max * 7; in zleak_should_disable_for_zone()
9234 z->z_wired_max = ~0u; in zone_init_defaults()
9247 zone->z_wired_max = zone_alloc_pages_for_nelems(zone, nelems); in zone_set_exhaustible()
/xnu-11215.1.10/tools/lldbmacros/
H A Dmemory.py420 zone[mark] = int(zone_val.z_wired_max) != 0xffffffff
431 zone["page_count_max"] = unsigned(zone_val.z_wired_max) * pcpu_scale
470 markings += sigil if int(zone_val.z_wired_max) != 0xffffffff else " "