Home
last modified time | relevance | path

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

/xnu-10002.1.13/osfmk/kern/
H A Dzalloc_internal.h353 uint32_t z_wired_max; /* how large can this zone grow */ member
735 return zone->z_wired_max != ~0u; in zone_exhaustible()
742 return zone->z_wired_cur >= zone->z_wired_max; in zone_exhausted()
H A Dzalloc.c3410 return z->z_wired_cur * 8 >= z->z_wired_max * 7; in zleak_should_enable_for_zone()
3425 return z->z_wired_cur * 8 < z->z_wired_max * 7; in zleak_should_disable_for_zone()
9032 z->z_wired_max = ~0u; in zone_init_defaults()
9045 zone->z_wired_max = zone_alloc_pages_for_nelems(zone, nelems); in zone_set_exhaustible()
/xnu-10002.1.13/tools/lldbmacros/
H A Dmemory.py479 zone[mark] = int(zone_val.z_wired_max) != 0xffffffff
490 zone["page_count_max"] = unsigned(zone_val.z_wired_max) * pcpu_scale
529 markings += sigil if int(zone_val.z_wired_max) != 0xffffffff else " "