Searched refs:dstLen (Results 1 - 2 of 2) sorted by relevance

/darwin-on-arm/xnu/iokit/Kernel/
H A DIOHibernateIO.cpp254 IOByteCount dstLen; local
256 dstAddr64 = md->getPhysicalSegment(offset, &dstLen, kIOMemoryMapperNone);
261 if (dstLen > remaining)
262 dstLen = remaining;
265 bcopy_phys(srcAddr, dstAddr64, dstLen);
267 copypv(srcAddr, dstAddr64, dstLen,
270 srcAddr += dstLen;
271 offset += dstLen;
272 remaining -= dstLen;
292 IOByteCount dstLen; local
[all...]
H A DIOMemoryDescriptor.cpp1083 IOByteCount dstLen;
1085 dstAddr64 = getPhysicalSegment(offset, &dstLen, kIOMemoryMapperNone);
1090 if (dstLen > remaining)
1091 dstLen = remaining;
1093 copypv(srcAddr, (addr64_t) dstAddr64, dstLen,
1096 srcAddr += dstLen;
1097 offset += dstLen;
1098 remaining -= dstLen;
1986 IOByteCount dstLen;
1988 dstAddr64 = getPhysicalSegment(offset, &dstLen, kIOMemoryMapperNon
[all...]

Completed in 25 milliseconds