Home
last modified time | relevance | path

Searched refs:LoaderPagesSpanned (Results 1 – 6 of 6) sorted by relevance

/reactos/boot/freeldr/freeldr/lib/mm/
H A Dmm.c29 PFN_NUMBER LoaderPagesSpanned = 0; variable
78 if ((((ULONG_PTR)MemPointer + MemorySize + PAGE_SIZE - 1) >> PAGE_SHIFT) > LoaderPagesSpanned) in MmAllocateMemoryWithType()
79 LoaderPagesSpanned = (((ULONG_PTR)MemPointer + MemorySize + PAGE_SIZE - 1) >> PAGE_SHIFT); in MmAllocateMemoryWithType()
137 if ((((ULONG_PTR)MemPointer + MemorySize + PAGE_SIZE - 1) >> PAGE_SHIFT) > LoaderPagesSpanned) in MmAllocateMemoryAtAddress()
138 LoaderPagesSpanned = (((ULONG_PTR)MemPointer + MemorySize + PAGE_SIZE - 1) >> PAGE_SHIFT); in MmAllocateMemoryAtAddress()
208 if ((((ULONG_PTR)MemPointer + MemorySize) >> PAGE_SHIFT) > LoaderPagesSpanned) in MmAllocateHighestMemoryBelowAddress()
209 LoaderPagesSpanned = (((ULONG_PTR)MemPointer + MemorySize) >> PAGE_SHIFT); in MmAllocateHighestMemoryBelowAddress()
/reactos/boot/freeldr/freeldr/arch/uefi/
H A Duefimem.c30 extern ULONG LoaderPagesSpanned;
222 …ry->PhysicalStart + (MapEntry->NumberOfPages * PAGE_SIZE)) >> EFI_PAGE_SHIFT) > LoaderPagesSpanned) in UefiMemGetMemoryMap()
225LoaderPagesSpanned = ((MapEntry->PhysicalStart + (MapEntry->NumberOfPages * PAGE_SIZE)) >> EFI_PAG… in UefiMemGetMemoryMap()
/reactos/boot/freeldr/freeldr/ntldr/
H A Dwlmemory.c17 extern ULONG LoaderPagesSpanned;
117 if (BasePage + PageCount > LoaderPagesSpanned) return; in MempSetupPagingForRegion()
H A Dwinldr.c22 extern ULONG LoaderPagesSpanned;
1268 LoaderBlock->Extension->LoaderPagesSpanned = LoaderPagesSpanned; in LoadAndBootWindowsCommon()
/reactos/sdk/include/reactos/arc/
H A Darc.h403 ULONG_PTR LoaderPagesSpanned; /* Not anymore present starting NT 6.2 */ member
/reactos/ntoskrnl/mm/ARM3/
H A Dmminit.c2118 MmBootImageSize = KeLoaderBlock->Extension->LoaderPagesSpanned; in MmArmInitSystem()