Lines Matching refs:khz
569 struct kheap_zones *khz = kheap->kh_zones; in kalloc_idx_for_size() local
575 idx = khz->dlut[INDEX_ZDLUT(size)]; in kalloc_idx_for_size()
579 idx = khz->k_zindex_start; in kalloc_idx_for_size()
580 while (khz->cfg[idx].kzc_size < size) { in kalloc_idx_for_size()
589 struct kheap_zones *khz = kheap->kh_zones; in kalloc_heap_zone_for_idx() local
590 return khz->k_zone[zindex]; in kalloc_heap_zone_for_idx()
1733 struct kheap_zones *khz = kheap->kh_zones; in kalloc_heap_zone_for_size() local
1737 z = khz->k_zone[khz->dlut[INDEX_ZDLUT(size)]]; in kalloc_heap_zone_for_size()
1740 uint32_t zindex = khz->k_zindex_start; in kalloc_heap_zone_for_size()
1741 while (khz->cfg[zindex].kzc_size < size) { in kalloc_heap_zone_for_size()
1744 z = khz->k_zone[zindex]; in kalloc_heap_zone_for_size()