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

/macosx-10.5.8/xnu-1228.15.4/osfmk/kdp/ml/i386/
H A Dkdp_vm.c114 addr64_t cur_phys_dst, cur_phys_src; local
129 if (!(cur_phys_src = kdp_vtophys(src_pmap,
134 cur_phys_src = cur_virt_src;
142 if (!pmap_valid_page(i386_btop(cur_phys_dst)) || !pmap_valid_page(i386_btop(cur_phys_src)))
146 cnt = PAGE_SIZE - (cur_phys_src & PAGE_MASK);
153 bcopy_phys(cur_phys_src, cur_phys_dst, cnt);
172 addr64_t cur_phys_src, cur_phys_dst; local
188 if ((cur_phys_src = kdp_vtophys(kernel_pmap, cur_virt_src)) == 0)
191 cnt_src = ((cur_phys_src + PAGE_SIZE) & (PAGE_MASK)) - cur_phys_src;
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/kdp/ml/ppc/
H A Dkdp_vm.c124 addr64_t cur_phys_src, cur_phys_dst; local
172 if((cur_phys_src = kdp_vtophys(pmap, cur_virt_src)) == 0)
176 if(!mapping_phys_lookup((ppnum_t)(cur_phys_src >> 12), &dummy)) goto exit; /* Can't read where there's not any memory */
186 pmap, cur_virt_src, cur_phys_src);
189 bcopy_phys(cur_phys_src, cur_phys_dst, cnt); /* Copy stuff over */
212 addr64_t cur_phys_src, cur_phys_dst; local
228 if ((cur_phys_src = kdp_vtophys(kernel_pmap, cur_virt_src)) == 0)
231 cnt_src = ((cur_phys_src + NBPG) & (-NBPG)) - cur_phys_src;
241 bcopy_phys(cur_phys_src, cur_phys_ds
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/
H A Dmachine_routines.c175 addr64_t cur_phys_dst, cur_phys_src; local
179 if (!(cur_phys_src = kvtophys(virtsrc)))
183 if (!pmap_valid_page(i386_btop(cur_phys_dst)) || !pmap_valid_page(i386_btop(cur_phys_src)))
185 count = PAGE_SIZE - (cur_phys_src & PAGE_MASK);
191 bcopy_phys(cur_phys_src, cur_phys_dst, count);
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dmachine_routines.c266 addr64_t cur_phys_dst, cur_phys_src; local
270 if (!(cur_phys_src = kvtophys(virtsrc)))
274 if (!mapping_phys_lookup((cur_phys_src>>12), &pindex) ||
277 count = PAGE_SIZE - (cur_phys_src & PAGE_MASK);
283 bcopy_phys(cur_phys_src, cur_phys_dst, count);

Completed in 32 milliseconds