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

/macosx-10.10.1/xnu-2782.1.97/iokit/Kernel/
H A DIOMemoryCursor.cpp125 PhysicalSegment curSeg = { 0, 0 }; local
142 if (!curSeg.location)
145 curSeg = seg;
148 else if ((curSeg.location + curSeg.length == seg.location))
151 curSeg.length += seg.length;
157 if ((curSeg.length > maxSegmentSize))
159 seg.location = curSeg.location + maxSegmentSize;
160 seg.length = curSeg.length - maxSegmentSize;
162 curSeg
[all...]
H A DIODMACommand.cpp1023 Segment64 curSeg = { 0, 0 }; local
1076 if ((curSeg.fIOVMAddr + curSeg.fLength) == state->fIOVMAddr) {
1079 curSeg.fLength += length;
1090 if (!curSeg.fIOVMAddr)
1094 curSeg.fIOVMAddr = state->fIOVMAddr | bypassMask;
1095 curSeg.fLength = length;
1101 if ((kWalkClient & op) && (curSeg.fIOVMAddr + curSeg.fLength - 1) > maxPhys)
1105 curSeg
[all...]

Completed in 281 milliseconds