Lines Matching defs:MemInfo
82 ACPI_MEM_SPACE_CONTEXT *MemInfo = RegionContext;
142 if ((Address < MemInfo->MappedPhysicalAddress) ||
145 MemInfo->MappedPhysicalAddress + MemInfo->MappedLength)))
151 if (MemInfo->MappedLength)
155 AcpiOsUnmapMemory (MemInfo->MappedLogicalAddress,
156 MemInfo->MappedLength);
165 ((MemInfo->Address + MemInfo->Length) - Address);
192 MemInfo->MappedLogicalAddress = AcpiOsMapMemory (Address, MapLength);
193 if (!MemInfo->MappedLogicalAddress)
198 MemInfo->MappedLength = 0;
204 MemInfo->MappedPhysicalAddress = Address;
205 MemInfo->MappedLength = MapLength;
212 LogicalAddrPtr = MemInfo->MappedLogicalAddress +
213 ((UINT64) Address - (UINT64) MemInfo->MappedPhysicalAddress);