Home
last modified time | relevance | path

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

/reactos/ntoskrnl/mm/ARM3/
H A Dkdbg.c37 #define POOL_BLOCK(x, i) (PPOOL_HEADER)((ULONG_PTR)(x) + ((i) * POOL_BLOCK_SIZE)) macro
38 #define POOL_NEXT_BLOCK(x) POOL_BLOCK((x), (x)->BlockSize)
39 #define POOL_PREV_BLOCK(x) POOL_BLOCK((x), -((x)->PreviousSize))
137 Entry = POOL_BLOCK(Entry, Entry->BlockSize); in ExpKdbgExtPool()
H A Dexpool.c63 #define POOL_BLOCK(x, i) (PPOOL_HEADER)((ULONG_PTR)(x) + ((i) * POOL_BLOCK_SIZE)) macro
64 #define POOL_NEXT_BLOCK(x) POOL_BLOCK((x), (x)->BlockSize)
65 #define POOL_PREV_BLOCK(x) POOL_BLOCK((x), -((x)->PreviousSize))
2196 FragmentEntry = POOL_BLOCK(Entry, i); in ExAllocatePoolWithTag()
2247 NextEntry = POOL_BLOCK(Entry, i); in ExAllocatePoolWithTag()
2399 FragmentEntry = POOL_BLOCK(Entry, i); in ExAllocatePoolWithTag()
2765 NextEntry = POOL_BLOCK(Entry, BlockSize); in ExFreePoolWithTag()