Lines Matching refs:heap
46 MEMHeapHandle const heap = (MEMHeapHandle)pAllocator->pHeap; in AllocatorAllocForExpHeap_() local
48 return MEMAllocFromExpHeapEx( heap, size, alignment ); in AllocatorAllocForExpHeap_()
67 MEMHeapHandle const heap = (MEMHeapHandle)pAllocator->pHeap; in AllocatorFreeForExpHeap_() local
68 MEMFreeToExpHeap( heap, memBlock ); in AllocatorFreeForExpHeap_()
91 MEMHeapHandle const heap = (MEMHeapHandle)pAllocator->pHeap; in AllocatorAllocForFrmHeap_() local
93 return MEMAllocFromFrmHeapEx( heap, size, alignment ); in AllocatorAllocForFrmHeap_()
144 MEMHeapHandle const heap = (MEMHeapHandle)pAllocator->pHeap; in AllocatorAllocForUnitHeap_() local
146 if ( size > MEMGetMemBlockSizeForUnitHeap(heap) ) in AllocatorAllocForUnitHeap_()
151 return MEMAllocFromUnitHeap(heap); in AllocatorAllocForUnitHeap_()
170 MEMHeapHandle const heap = (MEMHeapHandle)pAllocator->pHeap; in AllocatorFreeForUnitHeap_() local
171 MEMFreeToUnitHeap( heap, memBlock ); in AllocatorFreeForUnitHeap_()
194 OSHeapHandle const heap = (int)pAllocator->pHeap; in AllocatorAllocForOSHeap_() local
195 return OSAllocFromHeap( heap, size ); in AllocatorAllocForOSHeap_()
214 OSHeapHandle const heap = (int)pAllocator->pHeap; in AllocatorFreeForOSHeap_() local
215 OSFreeToHeap( heap, memBlock ); in AllocatorFreeForOSHeap_()
287 MEMHeapHandle heap, in MEMInitAllocatorForExpHeap() argument
298 pAllocator->pHeap = heap; in MEMInitAllocatorForExpHeap()
319 MEMHeapHandle heap, in MEMInitAllocatorForFrmHeap() argument
330 pAllocator->pHeap = heap; in MEMInitAllocatorForFrmHeap()
350 MEMHeapHandle heap in MEMInitAllocatorForUnitHeap() argument
360 pAllocator->pHeap = heap; in MEMInitAllocatorForUnitHeap()
380 OSHeapHandle heap in MEMInitAllocatorForOSHeap() argument
390 pAllocator->pHeap = (void*)heap; in MEMInitAllocatorForOSHeap()