Home
last modified time | relevance | path

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

/RvlSDK-3.1/build/libraries/mem/src/
Dmem_heapCommon.c77 if ( GetUIntPtr( pHeapHd->heapStart ) <= GetUIntPtr( memBlock ) in FindContainHeap_()
121 if ( GetUIntPtr( pHeapHd->heapStart ) <= GetUIntPtr( pTargetHeap ) in FindParentHeap_()
206 void* heapStart, in MEMiInitHeapHead() argument
213 pHeapHd->heapStart = heapStart; in MEMiInitHeapHead()
222 heapStart, in MEMiInitHeapHead()
223 GetOffsetFromPtr( heapStart, heapEnd ) in MEMiInitHeapHead()
346 if ( GetUIntPtr( pHeapHd->heapStart ) <= GetUIntPtr( heap ) in MEMFindParentHeap()
Dmem_unitHeap.c143 const u32 heapSize = GetOffsetFromPtr( pHeapHd->heapStart, pHeapHd->heapEnd ); in MEMiDumpUnitHeap()
207 … void* heapStart = RoundUpPtr( AddU32ToPtr( pUntHeapHd, sizeof(MEMiUntHeapHead) ), alignment ); in MEMCreateUnitHeapEx() local
210 if ( ComparePtr( heapStart, heapEnd ) > 0 ) in MEMCreateUnitHeapEx()
215 elementNum = GetOffsetFromPtr( heapStart, heapEnd ) / memBlockSize; in MEMCreateUnitHeapEx()
221 heapEnd = AddU32ToPtr( heapStart, elementNum * memBlockSize ); in MEMCreateUnitHeapEx()
226 heapStart, in MEMCreateUnitHeapEx()
230 pUntHeapHd->mbFreeList.head = (MEMiUntHeapMBlockHead*)heapStart; in MEMCreateUnitHeapEx()
Dmem_frameHeap.c114 pFrmHeapHd->headAllocator = pHeapHd->heapStart; in InitFrameHeap_()
216 pHeapHd->heapStart, in FreeHead_()
217 GetOffsetFromPtr(pHeapHd->heapStart, pFrmHeapHd->headAllocator) ); in FreeHead_()
219 pFrmHeapHd->headAllocator = pHeapHd->heapStart; in FreeHead_()
343 … const u32 heapSize = GetOffsetFromPtr( pHeapHd->heapStart, pHeapHd->heapEnd ); in MEMiDumpFrmHeap()
347 OSReport( " head [%p - %p) ", pHeapHd->heapStart, pFrmHeapHd->headAllocator); in MEMiDumpFrmHeap()
348 PrintSize_(GetOffsetFromPtr(pHeapHd->heapStart, pFrmHeapHd->headAllocator), heapSize); in MEMiDumpFrmHeap()
781 ASSERT( ComparePtr(pHeapHd->heapStart, memBlock) <= 0 in MEMResizeForMBlockFrmHeap()
Dmem_expHeap.c589 region.start = pHeapHd->heapStart; in InitExpHeap_()
923 if ( GetUIntPtr(pMBHead) < GetUIntPtr(pHeapHd->heapStart) in CheckMBlock_()
928 heapType, memBlock, pHeapHd->heapStart, pHeapHd->heapEnd); in CheckMBlock_()
1269 …u32 heapSize = GetOffsetFromPtr(pHeapHd->heapStart, pHeapHd->heapEnd); // Heap size (data region … in MEMiDumpExpHeap()
1543 ASSERT( pHeapHd->heapStart <= memBlock && memBlock < pHeapHd->heapEnd ); in MEMFreeToExpHeap()
2022 if ( totalBytes != GetOffsetFromPtr(pHeapHd->heapStart, pHeapHd->heapEnd) ) in MEMCheckExpHeap()
2025 GetOffsetFromPtr(pHeapHd->heapStart, pHeapHd->heapEnd), totalBytes); in MEMCheckExpHeap()
/RvlSDK-3.1/include/revolution/mem/
DheapCommon.h105 void* heapStart; // Heap start address member
182 return ((s32)(heap->heapEnd) - (s32)(heap->heapStart)); in MEMGetHeapTotalUsableSize()
/RvlSDK-3.1/build/libraries/mem/include/
DheapCommoni.h79 void* heapStart,