Lines Matching refs:src64
520 copypv(addr64_t src64, addr64_t snk64, unsigned int size, int which) in copypv() argument
525 KERNEL_DEBUG(0xeff7004c | DBG_FUNC_START, (unsigned)src64, in copypv()
538 if (lop > (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1)))) { in copypv()
539 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))); /* No, source is smaller */ in copypv()
548 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))); in copypv()
566 flush_dcache64(src64, csize, 1); /* If requested, flush source before move */ in copypv()
573 bcopy_phys(src64, snk64, csize); /* Do a physical copy, virtually */ in copypv()
575 if (copyio_phys(src64, snk64, csize, which)) { in copypv()
581 flush_dcache64(src64, csize, 1); /* If requested, flush source after move */ in copypv()
589 src64 += csize; /* Bump source to next physical address */ in copypv()
591 KERNEL_DEBUG(0xeff7004c | DBG_FUNC_END, (unsigned)src64, in copypv()