Home
last modified time | relevance | path

Searched refs:Mm (Results 1 – 2 of 2) sorted by relevance

/acpica-latest/source/components/executer/
Dexregion.c191 ACPI_MEM_MAPPING *Mm = MemInfo->CurMm; in AcpiExSystemMemorySpaceHandler() local
251 if (!Mm || (Address < Mm->PhysicalAddress) || in AcpiExSystemMemorySpaceHandler()
252 ((UINT64) Address + Length > (UINT64) Mm->PhysicalAddress + Mm->Length)) in AcpiExSystemMemorySpaceHandler()
261 for (Mm = MemInfo->FirstMm; Mm; Mm = Mm->NextMm) in AcpiExSystemMemorySpaceHandler()
263 if (Mm == MemInfo->CurMm) in AcpiExSystemMemorySpaceHandler()
268 if (Address < Mm->PhysicalAddress) in AcpiExSystemMemorySpaceHandler()
273 if ((UINT64) Address + Length > (UINT64) Mm->PhysicalAddress + Mm->Length) in AcpiExSystemMemorySpaceHandler()
278 MemInfo->CurMm = Mm; in AcpiExSystemMemorySpaceHandler()
284 Mm = ACPI_ALLOCATE_ZEROED(sizeof(*Mm)); in AcpiExSystemMemorySpaceHandler()
285 if (!Mm) in AcpiExSystemMemorySpaceHandler()
[all …]
/acpica-latest/source/components/events/
Devrgnini.c186 ACPI_MEM_MAPPING *Mm; in AcpiEvSystemMemoryRegionSetup() local
202 Mm = LocalRegionContext->FirstMm; in AcpiEvSystemMemoryRegionSetup()
203 LocalRegionContext->FirstMm = Mm->NextMm; in AcpiEvSystemMemoryRegionSetup()
204 AcpiOsUnmapMemory(Mm->LogicalAddress, Mm->Length); in AcpiEvSystemMemoryRegionSetup()
205 ACPI_FREE(Mm); in AcpiEvSystemMemoryRegionSetup()