Searched refs:lop (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/osfmk/x86_64/
H A Dcopyio.c285 unsigned int lop, csize; local
300 lop = (unsigned int)(PAGE_SIZE - (snk64 & (PAGE_SIZE - 1))); /* Assume sink smallest */
302 if (lop > (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))))
303 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))); /* No, source is smaller */
311 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1)));
313 lop = (unsigned int)(PAGE_SIZE - (snk64 & (PAGE_SIZE - 1)));
316 if (lop < size)
317 csize = lop; /* Nope, we can't do it all */
/darwin-on-arm/xnu/osfmk/i386/
H A Dcopyio.c524 unsigned int lop, csize; local
539 lop = (unsigned int)(PAGE_SIZE - (snk64 & (PAGE_SIZE - 1))); /* Assume sink smallest */
541 if (lop > (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))))
542 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1))); /* No, source is smaller */
550 lop = (unsigned int)(PAGE_SIZE - (src64 & (PAGE_SIZE - 1)));
552 lop = (unsigned int)(PAGE_SIZE - (snk64 & (PAGE_SIZE - 1)));
555 if (lop < size)
556 csize = lop; /* Nope, we can't do it all */
/darwin-on-arm/xnu/bsd/dev/
H A Dmemdev.c236 unsigned int left, lop, csize; local
288 lop = min((4096 - (vaddr & 4095)), (4096 - (fvaddr & 4095))); /* Get smallest amount left on sink and source */
289 csize = min(lop, left); /* Don't move more than we need to */
314 lop = min((4096 - (vaddr & 4095)), (4096 - (fvaddr & 4095))); /* Get smallest amount left on sink and source */
315 csize = min(lop, left); /* Don't move more than we need to */
/darwin-on-arm/xnu/SETUP/config/
H A Dmkmakefile.c486 struct opt *lop = 0; local
503 for (op=opt; op; lop=op, op=op->op_next)
515 if (lop == 0)
518 lop->op_next = op->op_next;

Completed in 34 milliseconds