Searched refs:zleak_alloc_buckets (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/osfmk/kern/
H A Dzalloc.c614 uint32_t zleak_alloc_buckets = CONFIG_ZLEAK_ALLOCATION_MAP_NUM; variable
670 if (PE_parse_boot_argn("zleak-allocs", &zleak_alloc_buckets, sizeof(zleak_alloc_buckets))) {
671 printf("Zone leak alloc buckets override:%u\n", zleak_alloc_buckets);
673 if (zleak_alloc_buckets == 0 || (zleak_alloc_buckets & (zleak_alloc_buckets-1))) {
721 vm_size_t z_alloc_size = zleak_alloc_buckets * sizeof(struct zallocation);
827 struct zallocation* allocation = &zallocations[hashaddr(addr, zleak_alloc_buckets)];
919 struct zallocation* allocation = &zallocations[hashaddr(addr, zleak_alloc_buckets)];
[all...]

Completed in 23 milliseconds