Searched refs:AllocationStart (Results 1 – 10 of 10) sorted by relevance
/reactos/sdk/lib/drivers/wdf/shared/inc/private/common/ |
H A D | fxpool.h | 48 DECLSPEC_ALIGN(MEMORY_ALLOCATION_ALIGNMENT) ULONG AllocationStart[1]; 53 #define FX_POOL_HEADER_SIZE FIELD_OFFSET(FX_POOL_HEADER, AllocationStart) 220 __in_xcount(ptr is at an offset from AllocationStart) PVOID ptr
|
H A D | fxobject.hpp | 222 DECLSPEC_ALIGN(MEMORY_ALLOCATION_ALIGNMENT) ULONG AllocationStart[1]; 226 FxObjectDebugExtensionSize = FIELD_OFFSET(FxObjectDebugExtension, AllocationStart), 405 return CONTAINING_RECORD(this, FxObjectDebugExtension, AllocationStart); in GetDebugExtension() 773 AllocationStart)->TagTracker; in GetTagTracker() 810 return CONTAINING_RECORD(Object, FxObjectDebugExtension, AllocationStart); in _GetDebugBase() 1283 pHeader = CONTAINING_RECORD(pObjectBase, FX_POOL_HEADER, AllocationStart); in _CleanupPointer()
|
H A D | fxpagedlookasidelist.hpp | 74 pHeader = CONTAINING_RECORD(Pool, FX_POOL_HEADER, AllocationStart); in ReclaimPool()
|
H A D | fxhandle.h | 168 __in PVOID AllocationStart,
|
/reactos/modules/rostests/apitests/ntdll/ |
H A D | NtAllocateVirtualMemory.c | 49 PVOID AllocationStart = NULL; in Allocate() local 56 …Status = NtAllocateVirtualMemory(NtCurrentProcess(), &AllocationStart, 0, &AllocationSize, MEM_RES… in Allocate() 61 FirstPageStart = (PUCHAR)AllocationStart + AllocationSize - PAGE_SIZE * NumberOfPages; in Allocate() 67 … Status = NtFreeVirtualMemory(NtCurrentProcess(), &AllocationStart, &AllocationSize, MEM_RELEASE); in Allocate() 74 UserBuffer = AllocationStart; in Allocate() 92 PVOID AllocationStart; in Free() local 102 AllocationStart = (PUCHAR)UserBuffer + DataSize + PAGE_SIZE - AllocationSize; in Free() 103 ASSERT((SIZE_T)AllocationStart % PAGE_SIZE == 0); in Free() 117 Status = NtFreeVirtualMemory(NtCurrentProcess(), &AllocationStart, &Zero, MEM_RELEASE); in Free()
|
/reactos/sdk/lib/drivers/wdf/shared/object/ |
H A D | wdfpool.cpp | 244 ptr = &pHeader->AllocationStart[0]; in FxPoolAllocator() 343 ptr = &pHeader->AllocationStart[0]; in FxPoolAllocator() 362 __in_xcount(ptr is at an offset from AllocationStart) PVOID ptr in FxPoolFree() 424 pHeader = CONTAINING_RECORD(ptr, FX_POOL_HEADER, AllocationStart); in FxPoolFree()
|
H A D | handleapi.cpp | 294 __in PVOID AllocationStart, in FxObjectAndHandleHeaderInit() argument 324 pExtension = (FxObjectDebugExtension*) AllocationStart; in FxObjectAndHandleHeaderInit() 329 pObject = (FxObject*) &pExtension->AllocationStart[0]; in FxObjectAndHandleHeaderInit() 332 pObject = (FxObject*) AllocationStart; in FxObjectAndHandleHeaderInit()
|
/reactos/sdk/lib/drivers/wdf/shared/core/ |
H A D | fxlookasidelist.cpp | 201 return &pHeader->AllocationStart[0];
|
H A D | fxpagedlookasidelist.cpp | 209 return &pHeader->AllocationStart[0];
|
H A D | fxdevice.cpp | 1702 ptr = &pHeader->AllocationStart[0]; in AllocateRequestMemory()
|