Searched refs:Allocs (Results 1 – 4 of 4) sorted by relevance
/reactos/drivers/filesystems/udfs/Include/ |
H A D | mem_tools.cpp | 72 UDFPrint(("src %x \t line %d \t", Allocs[i].Src, Allocs[i].Line)); in MyAllocDumpDescr() 109 if(Allocs) { in MyAllocDumpFrame() 120 if(!(Allocs[i].Len) && !(Allocs[i].Addr)) { in MyAllocDumpFrame() 241 for(i=FirstFree, Allocs = &(Allocs0[i]);i<=LastUsed;i++, Allocs++) { in MyAllocatePoolInFrame() 268 Allocs[1].Addr = Allocs->Addr + size; in MyAllocatePoolInFrame() 279 … for(i=best_i+1, Allocs++; (i<=LastUsed) && (Allocs->Len & MY_HEAP_FLAG_USED);i++, Allocs++) { in MyAllocatePoolInFrame() 342 if(Allocs[i].Addr && (Allocs[i].Addr < (ULONG)addr)) { in MyFindMemDescByAddr() 410 Allocs[i+pc].Addr = Allocs[i].Addr; in MyFreePoolInFrame() 527 Allocs[i].Addr = Allocs[i-1].Addr + new_len; in MyResizePoolInFrame() 555 if(!Allocs) { in MyAllocInitFrame() [all …]
|
/reactos/modules/rostests/kmtests/ntos_ex/ |
H A D | ExPools.c | 31 PVOID *Allocs; in PoolsTest() local 93 Allocs = ExAllocatePoolWithTag(PagedPool, sizeof(*Allocs) * AllocNumber, TAG_POOLTEST); in PoolsTest() 99 Allocs[i] = ExAllocatePoolWithTag(NonPagedPool, AllocSize, TAG_POOLTEST); in PoolsTest() 105 ExFreePoolWithTag(Allocs[i], TAG_POOLTEST); in PoolsTest() 109 ExFreePoolWithTag(Allocs, TAG_POOLTEST); in PoolsTest()
|
/reactos/sdk/lib/rtl/ |
H A D | heap.h | 150 ULONG Allocs; member 160 ULONG Allocs; member
|
/reactos/drivers/filesystems/udfs/udf_info/ |
H A D | extent.cpp | 2637 int8* Allocs; in UDFBuildAllocDescs() local 2646 Allocs = (int8*)MyAllocatePool__(NonPagedPool, InitSz); in UDFBuildAllocDescs() 2647 if(!Allocs) { in UDFBuildAllocDescs() 2652 RtlZeroMemory(Allocs, InitSz); in UDFBuildAllocDescs() 2661 MyFreePool__(Allocs); in UDFBuildAllocDescs() 2663 Allocs = NULL; in UDFBuildAllocDescs() 2668 status = UDFBuildShortAllocDescs(Vcb, PartNum, &Allocs, InitSz, FileInfo); in UDFBuildAllocDescs() 2672 status = UDFBuildLongAllocDescs(Vcb, PartNum, &Allocs, InitSz, FileInfo); in UDFBuildAllocDescs() 2680 MyFreePool__(Allocs); in UDFBuildAllocDescs() 2681 Allocs = NULL; in UDFBuildAllocDescs() [all …]
|