Lines Matching refs:_offset
5112 mach_vm_size_t _offset, in init() argument
5132 fOffset = _offset; in init()
5139 IOMemoryMap::setMemoryDescriptor(IOMemoryDescriptor * _memory, mach_vm_size_t _offset) in setMemoryDescriptor() argument
5146 if ((_offset + fLength) > _memory->getLength()) { in setMemoryDescriptor()
5149 fOffset = _offset; in setMemoryDescriptor()
5596 mach_vm_size_t _offset = newMapping->fOffset; in copyCompatible() local
5617 if (_offset < fOffset) { in copyCompatible()
5621 _offset -= fOffset; in copyCompatible()
5623 if ((_offset + _length) > fLength) { in copyCompatible()
5627 if ((fLength == _length) && (!_offset)) { in copyCompatible()
5632 newMapping->fOffset = fOffset + _offset; in copyCompatible()
5633 newMapping->fAddress = fAddress + _offset; in copyCompatible()
5663 IOMemoryMap::getPhysicalSegment( IOByteCount _offset, IOPhysicalLength * _length, IOOptionBits _opt… in getPhysicalSegment() argument
5665 IOMemoryMap::getPhysicalSegment( IOByteCount _offset, IOPhysicalLength * _length) in getPhysicalSegment()
5672 address = fMemory->getPhysicalSegment( fOffset + _offset, _length, _options ); in getPhysicalSegment()
5674 address = fMemory->getPhysicalSegment( fOffset + _offset, _length ); in getPhysicalSegment()