Lines Matching refs:src64
532 copypv(addr64_t src64, addr64_t snk64, unsigned int size, int which) in copypv() argument
537 KERNEL_DEBUG(0xeff7004c | DBG_FUNC_START, (unsigned)src64, in copypv()
550 if (lop > (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1)))) { in copypv()
551 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))); /* No, source is smaller */ in copypv()
560 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))); in copypv()
578 flush_dcache64(src64, csize, 1); /* If requested, flush source before move */ in copypv()
585 bcopy_phys(src64, snk64, csize); /* Do a physical copy, virtually */ in copypv()
587 if (copyio_phys(src64, snk64, csize, which)) { in copypv()
593 flush_dcache64(src64, csize, 1); /* If requested, flush source after move */ in copypv()
601 src64 += csize; /* Bump source to next physical address */ in copypv()
603 KERNEL_DEBUG(0xeff7004c | DBG_FUNC_END, (unsigned)src64, in copypv()