Searched refs:startAddress (Results 1 – 6 of 6) sorted by relevance
| /RvlSDK-3.3/build/libraries/mem/src/ |
| D | mem_frameHeap.c | 99 void* startAddress, in InitFrameHeap_() argument 104 MEMiHeapHead* pHeapHd = (MEMiHeapHead*)startAddress; in InitFrameHeap_() 401 void* startAddress, in MEMCreateFrmHeapEx() argument 408 ASSERT(startAddress != NULL); in MEMCreateFrmHeapEx() 410 endAddress = RoundDownPtr(AddU32ToPtr(startAddress, size), MIN_ALIGNMENT); in MEMCreateFrmHeapEx() 411 startAddress = RoundUpPtr(startAddress, MIN_ALIGNMENT); in MEMCreateFrmHeapEx() 413 if ( GetUIntPtr(startAddress) > GetUIntPtr(endAddress) in MEMCreateFrmHeapEx() 414 … || GetOffsetFromPtr(startAddress, endAddress) < sizeof(MEMiHeapHead) + sizeof(MEMiFrmHeapHead) in MEMCreateFrmHeapEx() 421 MEMiHeapHead* pHHead = InitFrameHeap_( startAddress, endAddress, optFlag ); in MEMCreateFrmHeapEx()
|
| D | mem_unitHeap.c | 179 void* startAddress, in MEMCreateUnitHeapEx() argument 189 ASSERT(startAddress != NULL); in MEMCreateUnitHeapEx() 195 pHeapHd = (MEMiHeapHead*)RoundUpPtr( startAddress, MIN_ALIGNMENT ); in MEMCreateUnitHeapEx() 196 heapEnd = RoundDownPtr( AddU32ToPtr( startAddress, heapSize ), MIN_ALIGNMENT ); in MEMCreateUnitHeapEx()
|
| D | mem_expHeap.c | 565 void* startAddress, in InitExpHeap_() argument 570 MEMiHeapHead* pHeapHd = (MEMiHeapHead*)startAddress; in InitExpHeap_() 1312 void* startAddress, in MEMCreateExpHeapEx() argument 1319 ASSERT(startAddress != NULL); in MEMCreateExpHeapEx() 1321 endAddress = RoundDownPtr(AddU32ToPtr(startAddress, size), MIN_ALIGNMENT); in MEMCreateExpHeapEx() 1322 startAddress = RoundUpPtr(startAddress, MIN_ALIGNMENT); in MEMCreateExpHeapEx() 1324 if ( GetUIntPtr(startAddress) > GetUIntPtr(endAddress) in MEMCreateExpHeapEx() 1325 || GetOffsetFromPtr(startAddress, endAddress) < in MEMCreateExpHeapEx() 1333 MEMiHeapHead* pHeapHd = InitExpHeap_( startAddress, endAddress, optFlag ); in MEMCreateExpHeapEx()
|
| /RvlSDK-3.3/include/revolution/mem/ |
| D | unitHeap.h | 74 void* startAddress, 112 void* startAddress, in MEMCreateUnitHeap() argument 117 … return MEMCreateUnitHeapEx( startAddress, heapSize, memBlockSize, MEM_HEAP_DEFAULT_ALIGNMENT, 0 ); in MEMCreateUnitHeap()
|
| D | frameHeap.h | 82 void* startAddress, 126 void* startAddress, in MEMCreateFrmHeap() argument 130 return MEMCreateFrmHeapEx( startAddress, size, 0 ); in MEMCreateFrmHeap()
|
| D | expHeap.h | 141 void* startAddress, 205 void* startAddress, in MEMCreateExpHeap() argument 209 return MEMCreateExpHeapEx( startAddress, size, 0 ); in MEMCreateExpHeap()
|