Searched refs:src64 (Results 1 – 8 of 8) sorted by relevance
| /xnu-8020.101.4/osfmk/i386/ |
| H A D | phys.c | 205 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() 218 if (physmap_enclosed(src64) == FALSE) { in ml_copy_phys() 219 src = (void *)(debugger_window_kva | (src64 & INTEL_OFFMASK)); in ml_copy_phys() 221 debug_pa = src64 & PG_FRAME; in ml_copy_phys() 223 src = PHYSMAP_PTOV(src64); in ml_copy_phys() 227 src = PHYSMAP_PTOV(src64); 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()
|
| H A D | misc_protos.h | 90 extern int apply_func_phys(addr64_t src64, vm_size_t bytes, int (*func)(void * buffer, vm_size_t by…
|
| /xnu-8020.101.4/osfmk/x86_64/ |
| H A D | copyio.c | 538 copypv(addr64_t src64, addr64_t snk64, unsigned int size, int which) in copypv() argument 543 KERNEL_DEBUG(0xeff7004c | DBG_FUNC_START, (unsigned)src64, in copypv() 556 if (lop > (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1)))) { in copypv() 557 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))); /* No, source is smaller */ in copypv() 566 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))); in copypv() 584 flush_dcache64(src64, csize, 1); /* If requested, flush source before move */ in copypv() 591 bcopy_phys(src64, snk64, csize); /* Do a physical copy, virtually */ in copypv() 593 if (copyio_phys(src64, snk64, csize, which)) { in copypv() 599 flush_dcache64(src64, csize, 1); /* If requested, flush source after move */ in copypv() 607 src64 += csize; /* Bump source to next physical address */ in copypv() [all …]
|
| H A D | loose_ends.c | 219 addr64_t src64, in bzero_phys_nc() argument 222 bzero_phys(src64, bytes); in bzero_phys_nc() 227 addr64_t src64, in bzero_phys() argument 230 bzero(PHYSMAP_PTOV(src64), bytes); in bzero_phys() 240 addr64_t src64, in bcopy_phys() argument 245 if (((((uint32_t)src64 & (NBPG - 1)) + bytes) > NBPG) || in bcopy_phys() 249 bcopy(PHYSMAP_PTOV(src64), PHYSMAP_PTOV(dst64), bytes); in bcopy_phys()
|
| /xnu-8020.101.4/osfmk/arm/ |
| H A D | misc_protos.h | 122 extern int apply_func_phys(addr64_t src64, vm_size_t bytes, int (*func)(void * buffer, vm_size_t by…
|
| H A D | loose_ends.c | 108 bzero_phys_nc(addr64_t src64, vm_size_t bytes) in bzero_phys_nc() argument 110 bzero_phys(src64, bytes); in bzero_phys_nc()
|
| H A D | machine_routines.h | 724 void bzero_phys_nc(addr64_t src64, vm_size_t bytes);
|
| /xnu-8020.101.4/osfmk/arm64/ |
| H A D | loose_ends.c | 190 bzero_phys_nc(addr64_t src64, vm_size_t bytes) in bzero_phys_nc() argument 192 bzero_phys(src64, bytes); in bzero_phys_nc()
|