Home
last modified time | relevance | path

Searched refs:PagedPoolAllocationMap (Results 1 – 4 of 4) sorted by relevance

/reactos/ntoskrnl/mm/ARM3/
H A Dpool.c477 i = RtlFindClearBitsAndSet(MmPagedPoolInfo.PagedPoolAllocationMap, in MiAllocatePoolPages()
593 RtlClearBits(MmPagedPoolInfo.PagedPoolAllocationMap, in MiAllocatePoolPages()
610 i = RtlFindClearBitsAndSet(MmPagedPoolInfo.PagedPoolAllocationMap, in MiAllocatePoolPages()
973 RtlClearBits(MmPagedPoolInfo.PagedPoolAllocationMap, i, NumberOfPages); in MiFreePoolPages()
1352 PagedPoolInfo->PagedPoolAllocationMap = ExAllocatePoolWithTag(NonPagedPool, in MiInitializeSessionPool()
1355 ASSERT(PagedPoolInfo->PagedPoolAllocationMap != NULL); in MiInitializeSessionPool()
1356 RtlInitializeBitMap(PagedPoolInfo->PagedPoolAllocationMap, in MiInitializeSessionPool()
1357 (PULONG)(PagedPoolInfo->PagedPoolAllocationMap + 1), in MiInitializeSessionPool()
1361 RtlSetAllBits(PagedPoolInfo->PagedPoolAllocationMap); in MiInitializeSessionPool()
1362 RtlClearBits(PagedPoolInfo->PagedPoolAllocationMap, 0, PTE_PER_PAGE); in MiInitializeSessionPool()
H A Dmminit.c1927 MmPagedPoolInfo.PagedPoolAllocationMap = ExAllocatePoolWithTag(NonPagedPool, in MiBuildPagedPool()
1930 ASSERT(MmPagedPoolInfo.PagedPoolAllocationMap); in MiBuildPagedPool()
1936 RtlInitializeBitMap(MmPagedPoolInfo.PagedPoolAllocationMap, in MiBuildPagedPool()
1937 (PULONG)(MmPagedPoolInfo.PagedPoolAllocationMap + 1), in MiBuildPagedPool()
1939 RtlSetAllBits(MmPagedPoolInfo.PagedPoolAllocationMap); in MiBuildPagedPool()
1940 RtlClearBits(MmPagedPoolInfo.PagedPoolAllocationMap, 0, PTE_PER_PAGE); in MiBuildPagedPool()
H A Dkdbg.c321 i = RtlFindSetBits(MmPagedPoolInfo.PagedPoolAllocationMap, 1, 0); in ExpKdbgExtPoolFindPagedPool()
371 i = RtlFindSetBits(MmPagedPoolInfo.PagedPoolAllocationMap, 1, i + 1); in ExpKdbgExtPoolFindPagedPool()
/reactos/ntoskrnl/include/internal/
H A Dmm.h493 PRTL_BITMAP PagedPoolAllocationMap; member