Home
last modified time | relevance | path

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

/xnu-11417.140.69/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()
787 unsigned int pg_num; in upl_commit_range() local
794 pg_num = (unsigned int) (target_offset / PAGE_SIZE); in upl_commit_range()
795 assert(pg_num == target_offset / PAGE_SIZE); in upl_commit_range()
797 if (bitmap_test(upl->lite_list, pg_num)) { in upl_commit_range()
[all …]
H A Dvm_pageout.c6183 unsigned int pg_num; local
6185 pg_num = (unsigned int) ((dst_offset - offset) / PAGE_SIZE);
6186 assert(pg_num == (dst_offset - offset) / PAGE_SIZE);
6187 bitmap_set(upl->lite_list, pg_num);
6431 unsigned int pg_num; local
6433 pg_num = (unsigned int) ((dst_offset - offset) / PAGE_SIZE);
6434 assert(pg_num == (dst_offset - offset) / PAGE_SIZE);
6435 bitmap_set(upl->lite_list, pg_num);
7266 unsigned int pg_num; local
7293 pg_num = (unsigned int) (new_offset / PAGE_SIZE);
[all …]