Lines Matching defs:heap
34 #define MEMAllocFromExpHeap(heap, size) malloc(size) argument
35 #define MEMAllocFromExpHeapEx(heap, size, alignment) malloc(size) argument
36 #define MEMAllocFromFrmHeap(heap, size) malloc(size) argument
37 #define MEMAllocFromFrmHeapEx(heap, size, alignment) malloc(size) argument
39 #define MEMFreeToExpHeap(heap, memBlock) free(memBlock) argument
40 #define MEMFreeToFrmHeap(heap, mode) free(heap) argument
42 #define MEMGetAllocatableSizeForDefaultHeapEx(heap, alignment) 0x2000000 //32MB, not sure what t… argument
43 #define MEMGetAllocatableSizeForExpHeapEx(heap, alignment) 0x2000000 //32MB, not sure what to say argument
44 #define MEMGetAllocatableSizeForFrmHeapEx(heap, alignment) 0x2000000 //32MB, not sure what to say argument
51 #define MEMInitAllocatorForExpHeap(pAllocator, heap, alignment) argument
52 #define MEMDestroyExpHeap(heap) NULL argument