Home
last modified time | relevance | path

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

/xnu-8792.61.2/bsd/vfs/
H A Dvfs_cluster.c1212 u_int pg_count; in cluster_io() local
1671 pg_count = 1; in cluster_io()
1673 pg_count = (io_size + pg_offset + (PAGE_SIZE - 1)) / PAGE_SIZE; in cluster_io()
1706 pg_count = 0; in cluster_io()
1735 pg_count = (bytes_to_zero - pg_resid + (PAGE_SIZE - 1)) / PAGE_SIZE; in cluster_io()
1737 pg_count = (bytes_to_zero - pg_resid) / PAGE_SIZE; in cluster_io()
1752 pg_count = (pg_offset + bytes_to_zero + (PAGE_SIZE - 1)) / PAGE_SIZE; in cluster_io()
1754 pg_count = (pg_offset + bytes_to_zero) / PAGE_SIZE; in cluster_io()
1763 if ((flags & CL_COMMIT) && pg_count) { in cluster_io()
1765 pg_count * PAGE_SIZE, in cluster_io()
[all …]
/xnu-8792.61.2/osfmk/vm/
H A Dvm_resident.c4277 int pg_count; in vm_page_free_list() local
4283 pg_count = 0; in vm_page_free_list()
4293 while (mem && pg_count < 64) { in vm_page_free_list()
4348 pg_count++; in vm_page_free_list()
4393 vm_pageout_vminfo.vm_page_pages_freed += pg_count; in vm_page_free_list()
4394 vm_page_free_count += pg_count; in vm_page_free_list()
4397 VM_DEBUG_CONSTANT_EVENT(vm_page_release, VM_PAGE_RELEASE, DBG_FUNC_NONE, pg_count, 0, 0, 0); in vm_page_free_list()