Searched refs:pg_index (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/bsd/vm/
H A Dvnode_pager.c255 int pg_index; local
383 for (pg_index = (upl_offset + isize) / PAGE_SIZE; pg_index > base_index;) {
384 if (upl_page_present(pl, --pg_index))
386 if (pg_index == base_index) {
397 isize = ((pg_index + 1) - base_index) * PAGE_SIZE;
400 pg_index = base_index;
406 if ( !upl_page_present(pl, pg_index)) {
415 pg_index++;
419 if ( !upl_dirty_page(pl, pg_index)) {
[all...]
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_readwrite.c3695 int pg_index; local
3791 for (pg_index = ((isize) / PAGE_SIZE); pg_index > 0;) {
3792 if (upl_page_present(pl, --pg_index))
3794 if (pg_index == 0) {
3807 * pg_index is the pg# of the UPL we're operating on
3810 isize = ((pg_index + 1) * PAGE_SIZE);
3811 pg_index = 0;
3819 if ( !upl_page_present(pl, pg_index)) {
3828 pg_index
4097 int pg_index; local
[all...]
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_cluster.c5699 int pg_index; local
5737 pg_index = upl_offset / PAGE_SIZE;
5744 paddr = ((addr64_t)upl_phys_page(pl, pg_index) << 12) + pg_offset;
5748 pg_index += 1;

Completed in 38 milliseconds