Home
last modified time | relevance | path

Searched refs:page_idx (Results 1 – 2 of 2) sorted by relevance

/xnu-8792.61.2/osfmk/vm/
H A Dvm_resident.c5868 unsigned int page_idx = 0, start_idx = 0, last_idx = 0, orig_last_idx = 0; in vm_page_find_contiguous() local
5927 for (page_idx = last_idx, start_idx = last_idx; in vm_page_find_contiguous()
5928 npages < contig_pages && page_idx < vm_pages_count; in vm_page_find_contiguous()
5929 page_idx++) { in vm_page_find_contiguous()
5933 page_idx >= orig_last_idx) { in vm_page_find_contiguous()
5942 m = &vm_pages[page_idx]; in vm_page_find_contiguous()
6001 start_idx = page_idx; in vm_page_find_contiguous()
6100 page_idx = last_idx; in vm_page_find_contiguous()
6113 assert(page_idx - start_idx == contig_pages); in vm_page_find_contiguous()
6126 while (start_idx < page_idx) { in vm_page_find_contiguous()
[all …]
/xnu-8792.61.2/tools/lldbmacros/
H A Dmemory.py362 page_idx = (addr - self.addr_base) // pagesize
366 self.meta_addr = self.meta_range[0] + page_idx * sizeof('struct zone_page_metadata')
4238 page_idx = 0
4239 while page_idx < pager.cpgr_num_slots:
4241 chunk = pager.cpgr_slots.cpgr_islots[page_idx // 128]
4242 slot = chunk[page_idx % 128]
4244 slot = pager.cpgr_slots.cpgr_dslots[page_idx]
4246 slot = pager.cpgr_slots.cpgr_eslots[page_idx]
4249 …print("compressed page for offset: %x slot %x\n" % ((page_idx * pagesize) - obj.paging_offset, slo…
4250 page_idx = page_idx + 1