Searched refs:cur_phys_dst (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/osfmk/kdp/ml/arm/
H A Dkdp_vm.c159 addr64_t cur_phys_src, cur_phys_dst; local
177 if ((cur_phys_dst = kdp_vtophys(kernel_pmap, cur_virt_dst)) == 0)
187 bcopy_phys(cur_virt_src, cur_phys_dst, cnt); /* Copy stuff over */
202 if ((cur_phys_dst = kdp_vtophys(kernel_pmap, cur_virt_dst)) == 0)
220 bcopy_phys(cur_phys_src, cur_phys_dst, cnt); /* Copy stuff over */
252 addr64_t cur_phys_src, cur_phys_dst; local
268 if ((cur_phys_dst = kdp_vtophys(kernel_pmap, cur_virt_dst)) == 0)
281 bcopy_phys(cur_phys_src, cur_phys_dst, cnt); /* Copy stuff over */
/darwin-on-arm/xnu/osfmk/kdp/ml/i386/
H A Dkdp_x86_common.c93 addr64_t cur_phys_dst, cur_phys_src; local
125 if(!(cur_phys_dst = kdp_vtophys(kernel_pmap, cur_virt_dst)))
130 if (!pmap_valid_page(i386_btop(cur_phys_dst)) || !pmap_valid_page(i386_btop(cur_phys_src)))
135 cnt_dst = PAGE_SIZE - (cur_phys_dst & PAGE_MASK);
144 ml_copy_phys(cur_phys_src, cur_phys_dst, (vm_size_t)cnt);
162 addr64_t cur_phys_dst, cur_phys_src; local
180 if(!(cur_phys_dst = kdp_vtophys(kernel_pmap, cur_virt_dst)))
185 cnt_dst = PAGE_SIZE - (cur_phys_dst & PAGE_MASK);
196 ml_copy_phys(cur_phys_src, cur_phys_dst, (vm_size_t)cnt);
212 addr64_t cur_phys_src, cur_phys_dst; local
262 addr64_t cur_phys_src, cur_phys_dst; local
[all...]
/darwin-on-arm/xnu/osfmk/arm/
H A Dmachine_routines.c404 addr64_t cur_phys_dst, cur_phys_src; local
410 if (!(cur_phys_dst = kvtophys(virtdst)))
412 if (!pmap_valid_page(atop(cur_phys_dst))
416 if (count > (PAGE_SIZE - (cur_phys_dst & PAGE_MASK)))
417 count = (uint32_t) (PAGE_SIZE - (cur_phys_dst & PAGE_MASK));
421 bcopy_phys(cur_phys_src, cur_phys_dst, count);
/darwin-on-arm/xnu/osfmk/i386/
H A Dmachine_routines.c176 addr64_t cur_phys_dst, cur_phys_src; local
182 if (!(cur_phys_dst = kvtophys(virtdst)))
184 if (!pmap_valid_page(i386_btop(cur_phys_dst)) || !pmap_valid_page(i386_btop(cur_phys_src)))
187 if (count > (PAGE_SIZE - (cur_phys_dst & PAGE_MASK)))
188 count = (uint32_t)(PAGE_SIZE - (cur_phys_dst & PAGE_MASK));
192 bcopy_phys(cur_phys_src, cur_phys_dst, count);

Completed in 18 milliseconds