Searched refs:dst64 (Results 1 – 3 of 3) sorted by relevance
| /xnu-12377.61.12/osfmk/i386/ |
| H A D | phys.c | 212 ml_copy_phys(addr64_t src64, addr64_t dst64, vm_size_t bytes) in ml_copy_phys() argument 223 assert(physmap_enclosed(src64) || physmap_enclosed(dst64)); in ml_copy_phys() 227 dst = PHYSMAP_PTOV(dst64); in ml_copy_phys() 229 } else if (physmap_enclosed(dst64) == FALSE) { in ml_copy_phys() 231 dst = (void *)(debugger_window_kva | (dst64 & INTEL_OFFMASK)); in ml_copy_phys() 232 debug_pa = dst64 & PG_FRAME; in ml_copy_phys() 235 dst = PHYSMAP_PTOV(dst64); in ml_copy_phys() 254 …if (((((uint32_t)src64 & (I386_PGBYTES - 1)) + bytes) > I386_PGBYTES) || ((((uint32_t)dst64 & (I38… in ml_copy_phys() 255 panic("ml_copy_phys spans pages, src: 0x%llx, dst: 0x%llx", src64, dst64); in ml_copy_phys()
|
| /xnu-12377.61.12/osfmk/x86_64/ |
| H A D | loose_ends.c | 239 addr64_t dst64, in bcopy_phys() argument 244 ((((uint32_t)dst64 & (NBPG - 1)) + bytes) > NBPG)) { in bcopy_phys() 247 bcopy(PHYSMAP_PTOV(src64), PHYSMAP_PTOV(dst64), bytes); in bcopy_phys() 256 addr64_t dst64, in apply_func_phys() argument 262 if (((((uint32_t)dst64 & (NBPG - 1)) + bytes) > NBPG)) { in apply_func_phys() 266 return func(PHYSMAP_PTOV(dst64), bytes, arg); in apply_func_phys()
|
| /xnu-12377.61.12/osfmk/arm64/ |
| H A D | loose_ends.c | 1116 addr64_t dst64, in apply_func_phys() argument 1122 if (!pmap_valid_address(dst64)) { in apply_func_phys() 1124 __FUNCTION__, dst64); in apply_func_phys() 1128 if (((((uint32_t)dst64 & (ARM_PGBYTES - 1)) + bytes) > ARM_PGBYTES)) { in apply_func_phys() 1130 __FUNCTION__, dst64, bytes); in apply_func_phys() 1133 return func((void*)phystokv(dst64), bytes, arg); in apply_func_phys()
|