Home
last modified time | relevance | path

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

/reactos/modules/rostests/kmtests/ntos_ex/
H A DExPools.c30 ULONG AllocSize, i, AllocNumber; in PoolsTest() local
37 AllocSize = i*10; in PoolsTest()
40 AllocSize++; in PoolsTest()
43 AllocSize += 13; in PoolsTest()
62 AllocSize = i*50; in PoolsTest()
65 AllocSize++; in PoolsTest()
68 AllocSize += 13; in PoolsTest()
98 AllocSize = 42; in PoolsTest()
115 ULONG AllocSize; in PoolsCorruption() local
118 AllocSize = 4096 + 0x10; in PoolsCorruption()
[all …]
/reactos/sdk/lib/rtl/
H A Dheapdbg.c135 SIZE_T AllocSize = 1; in RtlDebugAllocateHeap() local
152 if (Size) AllocSize = Size; in RtlDebugAllocateHeap()
153 AllocSize = ((AllocSize + Heap->AlignRound) & Heap->AlignMask) + sizeof(HEAP_ENTRY_EXTRA); in RtlDebugAllocateHeap()
156 if (AllocSize < Size || in RtlDebugAllocateHeap()
157 AllocSize > Heap->MaximumAllocationSize) in RtlDebugAllocateHeap()
201 SIZE_T AllocSize = 1; in RtlDebugReAllocateHeap() local
219 if (Size) AllocSize = Size; in RtlDebugReAllocateHeap()
220 AllocSize = ((AllocSize + Heap->AlignRound) & Heap->AlignMask) + sizeof(HEAP_ENTRY_EXTRA); in RtlDebugReAllocateHeap()
223 if (AllocSize < Size || in RtlDebugReAllocateHeap()
224 AllocSize > Heap->MaximumAllocationSize) in RtlDebugReAllocateHeap()
/reactos/sdk/tools/rsym/
H A Drsym64.c308 ULONG AllocSize; in StoreUnwindCodes() local
339 AllocSize = State->FramePtrDiff; in StoreUnwindCodes()
340 if (AllocSize <= 128) in StoreUnwindCodes()
343 Code[0].OpInfo = (AllocSize / 8) - 1; in StoreUnwindCodes()
346 else if (AllocSize <= 0x7FFF8) in StoreUnwindCodes()
350 Code[1].FrameOffset = AllocSize / 8; in StoreUnwindCodes()
357 Code[1].FrameOffset = (USHORT)AllocSize; in StoreUnwindCodes()
358 Code[2].FrameOffset = (USHORT)(AllocSize >> 16); in StoreUnwindCodes()
/reactos/modules/rostests/kmtests/ntos_mm/
H A DZwMapViewOfSection.c105 SIZE_T AllocSize = TestStringSize; in SimpleErrorChecks() local
154 …Status = ZwAllocateVirtualMemory(NtCurrentProcess(), &AllocBase, 0, &AllocSize, MEM_COMMIT, PAGE_R… in SimpleErrorChecks()
159 Status = ZwFreeVirtualMemory(NtCurrentProcess(), &AllocBase, &AllocSize, MEM_RELEASE); in SimpleErrorChecks()
/reactos/ntoskrnl/mm/ARM3/
H A Dsection.c224 SIZE_T AllocSize, BitmapSize, Size; in MiInitializeSystemSpaceMap() local
270 AllocSize = sizeof(MMVIEW) * Session->SystemSpaceHashSize; in MiInitializeSystemSpaceMap()
271 ASSERT(AllocSize < PAGE_SIZE); in MiInitializeSystemSpaceMap()
277 AllocSize, in MiInitializeSystemSpaceMap()
280 RtlZeroMemory(Session->SystemSpaceViewTable, AllocSize); in MiInitializeSystemSpaceMap()
/reactos/drivers/filesystems/fastfat/
H A Dcreate.c6412 LARGE_INTEGER AllocSize = {0}; in _Requires_lock_held_() local
6531 AllocSize.QuadPart = AllocationSize; in _Requires_lock_held_()
6532 if (!FatIsIoRangeValid( Fcb->Vcb, AllocSize, 0 )) { in _Requires_lock_held_()