Searched refs:cur_offset (Results 1 - 6 of 6) sorted by relevance

/xnu-2422.115.4/osfmk/vm/
H A Dvm_apple_protect.c340 vm_offset_t cur_offset; local
430 for (cur_offset = 0;
431 retval == KERN_SUCCESS && cur_offset < length;
432 cur_offset += PAGE_SIZE) {
435 if (!upl_page_present(upl_pl, (int)(cur_offset / PAGE_SIZE))) {
452 offset + cur_offset,
528 upl_phys_page(upl_pl, (int)(cur_offset / PAGE_SIZE));
544 offset+cur_offset,
563 UPL_SET_CS_VALIDATED(upl_pl, cur_offset / PAGE_SIZE,
565 UPL_SET_CS_TAINTED(upl_pl, cur_offset / PAGE_SIZ
[all...]
H A Dvm_swapfile_pager.c328 vm_offset_t cur_offset; local
394 for (cur_offset = 0; cur_offset < length; cur_offset += PAGE_SIZE) {
397 if (!upl_page_present(upl_pl, (int)(cur_offset / PAGE_SIZE))) {
409 upl_phys_page(upl_pl, (int)(cur_offset / PAGE_SIZE));
H A Dvm_compressor_pager.c454 memory_object_offset_t cur_offset; local
459 for (cur_offset = offset;
460 cur_offset < offset + size;
461 cur_offset += PAGE_SIZE) {
H A Dvm_object.c2830 vm_object_offset_t cur_offset; local
2877 for (cur_offset = start_offset;
2878 cur_offset < end_offset;
2879 cur_offset += PAGE_SIZE_64) {
2883 m = vm_page_lookup(object, cur_offset);
6567 vm_object_offset_t cur_offset = 0; local
6574 cur_offset = offset;
6602 if (p->offset >= cur_offset && p->offset < end_offset) {
6617 for (cur_offset = offset; cur_offset < end_offse
[all...]
H A Dvm_fault.c3138 vm_object_offset_t cur_offset; local
3274 * the shadow chain each time. cur_object and cur_offset
3296 cur_offset = offset;
3311 m = vm_page_lookup(cur_object, cur_offset);
3716 vm_fault_is_sequential(object, cur_offset, fault_info.behavior);
3718 vm_fault_deactivate_behind(object, cur_offset, fault_info.behavior);
3884 * No page at cur_object, cur_offset... m == NULL
3889 if (MUST_ASK_PAGER(cur_object, cur_offset, compressor_external_state) == TRUE) {
3990 if (vm_compressor_pager_get(cur_object->pager, cur_offset + cur_object->paging_offset,
3998 vm_page_insert(m, cur_object, cur_offset);
[all...]
/xnu-2422.115.4/osfmk/default_pager/
H A Ddp_backing_store.c3115 dp_offset_t cur_offset; local
3170 cur_offset = vs_offset;
3186 cur_offset += vm_page_size;
3209 ps_offset[seg_index] = ps_clmap(vs, cur_offset & ~cl_mask, &clmap, CL_FIND, 0, 0);
3237 if (cur_offset <= orig_vs_offset) {

Completed in 68 milliseconds