Home
last modified time | relevance | path

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

/xnu-12377.1.9/osfmk/vm/
H A Dvm_upl.c296 unsigned int pg_num; in upl_abort_range() local
299 pg_num = (unsigned int) (target_offset / PAGE_SIZE); in upl_abort_range()
300 assert(pg_num == target_offset / PAGE_SIZE); in upl_abort_range()
305 needed = upl->page_list[pg_num].needed; in upl_abort_range()
312 if (bitmap_test(upl->lite_list, pg_num)) { in upl_abort_range()
313 bitmap_clear(upl->lite_list, pg_num); in upl_abort_range()
789 unsigned int pg_num; in upl_commit_range() local
796 pg_num = (unsigned int) (target_offset / PAGE_SIZE); in upl_commit_range()
797 assert(pg_num == target_offset / PAGE_SIZE); in upl_commit_range()
799 if (bitmap_test(upl->lite_list, pg_num)) { in upl_commit_range()
[all …]
H A Dvm_pageout.c6296 unsigned int pg_num; local
6298 pg_num = (unsigned int) ((dst_offset - offset) / PAGE_SIZE);
6299 assert(pg_num == (dst_offset - offset) / PAGE_SIZE);
6300 bitmap_set(upl->lite_list, pg_num);
6562 unsigned int pg_num; local
6564 pg_num = (unsigned int) ((dst_offset - offset) / PAGE_SIZE);
6565 assert(pg_num == (dst_offset - offset) / PAGE_SIZE);
6566 bitmap_set(upl->lite_list, pg_num);
7460 unsigned int pg_num; local
7487 pg_num = (unsigned int) (new_offset / PAGE_SIZE);
[all …]