Home
last modified time | relevance | path

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

/xnu-11215.1.10/osfmk/vm/
H A Dvm_upl.c294 unsigned int pg_num; in upl_abort_range() local
297 pg_num = (unsigned int) (target_offset / PAGE_SIZE); in upl_abort_range()
298 assert(pg_num == target_offset / PAGE_SIZE); in upl_abort_range()
303 needed = upl->page_list[pg_num].needed; in upl_abort_range()
310 if (bitmap_test(upl->lite_list, pg_num)) { in upl_abort_range()
311 bitmap_clear(upl->lite_list, pg_num); in upl_abort_range()
780 unsigned int pg_num; in upl_commit_range() local
787 pg_num = (unsigned int) (target_offset / PAGE_SIZE); in upl_commit_range()
788 assert(pg_num == target_offset / PAGE_SIZE); in upl_commit_range()
790 if (bitmap_test(upl->lite_list, pg_num)) { in upl_commit_range()
[all …]
H A Dvm_pageout.c6193 unsigned int pg_num; local
6195 pg_num = (unsigned int) ((dst_offset - offset) / PAGE_SIZE);
6196 assert(pg_num == (dst_offset - offset) / PAGE_SIZE);
6197 bitmap_set(upl->lite_list, pg_num);
6441 unsigned int pg_num; local
6443 pg_num = (unsigned int) ((dst_offset - offset) / PAGE_SIZE);
6444 assert(pg_num == (dst_offset - offset) / PAGE_SIZE);
6445 bitmap_set(upl->lite_list, pg_num);
7331 unsigned int pg_num; local
7355 pg_num = (unsigned int) (new_offset / PAGE_SIZE);
[all …]