Home
last modified time | relevance | path

Searched refs:dst64 (Results 1 – 3 of 3) sorted by relevance

/xnu-8020.101.4/osfmk/i386/
H A Dphys.c205 ml_copy_phys(addr64_t src64, addr64_t dst64, vm_size_t bytes) in ml_copy_phys() argument
216 assert(physmap_enclosed(src64) || physmap_enclosed(dst64)); in ml_copy_phys()
220 dst = PHYSMAP_PTOV(dst64); in ml_copy_phys()
222 } else if (physmap_enclosed(dst64) == FALSE) { in ml_copy_phys()
224 dst = (void *)(debugger_window_kva | (dst64 & INTEL_OFFMASK)); in ml_copy_phys()
225 debug_pa = dst64 & PG_FRAME; in ml_copy_phys()
228 dst = PHYSMAP_PTOV(dst64); in ml_copy_phys()
247 …if (((((uint32_t)src64 & (I386_PGBYTES - 1)) + bytes) > I386_PGBYTES) || ((((uint32_t)dst64 & (I38… in ml_copy_phys()
248 panic("ml_copy_phys spans pages, src: 0x%llx, dst: 0x%llx", src64, dst64); in ml_copy_phys()
/xnu-8020.101.4/osfmk/arm64/
H A Dloose_ends.c857 addr64_t dst64, in apply_func_phys() argument
863 if (!pmap_valid_address(dst64)) { in apply_func_phys()
865 __FUNCTION__, dst64); in apply_func_phys()
869 if (((((uint32_t)dst64 & (ARM_PGBYTES - 1)) + bytes) > ARM_PGBYTES)) { in apply_func_phys()
871 __FUNCTION__, dst64, bytes); in apply_func_phys()
874 return func((void*)phystokv(dst64), bytes, arg); in apply_func_phys()
/xnu-8020.101.4/osfmk/x86_64/
H A Dloose_ends.c241 addr64_t dst64, in bcopy_phys() argument
246 ((((uint32_t)dst64 & (NBPG - 1)) + bytes) > NBPG)) { in bcopy_phys()
249 bcopy(PHYSMAP_PTOV(src64), PHYSMAP_PTOV(dst64), bytes); in bcopy_phys()
258 addr64_t dst64, in apply_func_phys() argument
264 if (((((uint32_t)dst64 & (NBPG - 1)) + bytes) > NBPG)) { in apply_func_phys()
268 return func(PHYSMAP_PTOV(dst64), bytes, arg); in apply_func_phys()