Home
last modified time | relevance | path

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

/xnu-10063.121.3/osfmk/kern/
H A Dzalloc_internal.h354 uint32_t z_wired_max; /* how large can this zone grow */ member
737 return zone->z_wired_max != ~0u; in zone_exhaustible()
744 return zone->z_wired_cur >= zone->z_wired_max; in zone_exhausted()
H A Dzalloc.c3432 return z->z_wired_cur * 8 >= z->z_wired_max * 7; in zleak_should_enable_for_zone()
3447 return z->z_wired_cur * 8 < z->z_wired_max * 7; in zleak_should_disable_for_zone()
9178 z->z_wired_max = ~0u; in zone_init_defaults()
9191 zone->z_wired_max = zone_alloc_pages_for_nelems(zone, nelems); in zone_set_exhaustible()
/xnu-10063.121.3/tools/lldbmacros/
H A Dmemory.py470 zone[mark] = int(zone_val.z_wired_max) != 0xffffffff
481 zone["page_count_max"] = unsigned(zone_val.z_wired_max) * pcpu_scale
520 markings += sigil if int(zone_val.z_wired_max) != 0xffffffff else " "