Home
last modified time | relevance | path

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

/xnu-8020.140.41/osfmk/vm/
H A Dvm_resident.c5778 unsigned int page_idx = 0, start_idx = 0, last_idx = 0, orig_last_idx = 0; in vm_page_find_contiguous() local
5837 for (page_idx = last_idx, start_idx = last_idx; in vm_page_find_contiguous()
5838 npages < contig_pages && page_idx < vm_pages_count; in vm_page_find_contiguous()
5839 page_idx++) { in vm_page_find_contiguous()
5843 page_idx >= orig_last_idx) { in vm_page_find_contiguous()
5852 m = &vm_pages[page_idx]; in vm_page_find_contiguous()
5911 start_idx = page_idx; in vm_page_find_contiguous()
6010 page_idx = last_idx; in vm_page_find_contiguous()
6023 assert(page_idx - start_idx == contig_pages); in vm_page_find_contiguous()
6036 while (start_idx < page_idx) { in vm_page_find_contiguous()
[all …]
/xnu-8020.140.41/tools/lldbmacros/
H A Dmemory.py353 page_idx = (addr - self.addr_base) // pagesize
357 self.meta_addr = self.meta_range[0] + page_idx * sizeof('struct zone_page_metadata')
3971 page_idx = 0
3972 while page_idx < pager.cpgr_num_slots:
3974 chunk = pager.cpgr_slots.cpgr_islots[page_idx // 128]
3975 slot = chunk[page_idx % 128]
3977 slot = pager.cpgr_slots.cpgr_dslots[page_idx]
3979 slot = pager.cpgr_slots.cpgr_eslots[page_idx]
3982 …print("compressed page for offset: %x slot %x\n" % ((page_idx * pagesize) - obj.paging_offset, slo…
3983 page_idx = page_idx + 1