Searched refs:startAddress (Results 1 – 6 of 6) sorted by relevance
| /RvlSDK-3.1/include/revolution/mem/ |
| D | unitHeap.h | 75 void* startAddress, 113 void* startAddress, in MEMCreateUnitHeap() argument 118 … return MEMCreateUnitHeapEx( startAddress, heapSize, memBlockSize, MEM_HEAP_DEFAULT_ALIGNMENT, 0 ); in MEMCreateUnitHeap()
|
| D | frameHeap.h | 83 void* startAddress, 127 void* startAddress, in MEMCreateFrmHeap() argument 131 return MEMCreateFrmHeapEx( startAddress, size, 0 ); in MEMCreateFrmHeap()
|
| D | expHeap.h | 141 void* startAddress, 204 void* startAddress, in MEMCreateExpHeap() argument 208 return MEMCreateExpHeapEx( startAddress, size, 0 ); in MEMCreateExpHeap()
|
| /RvlSDK-3.1/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_() 1301 void* startAddress, in MEMCreateExpHeapEx() argument 1308 ASSERT(startAddress != NULL); in MEMCreateExpHeapEx() 1310 endAddress = RoundDownPtr(AddU32ToPtr(startAddress, size), MIN_ALIGNMENT); in MEMCreateExpHeapEx() 1311 startAddress = RoundUpPtr(startAddress, MIN_ALIGNMENT); in MEMCreateExpHeapEx() 1313 if ( GetUIntPtr(startAddress) > GetUIntPtr(endAddress) in MEMCreateExpHeapEx() 1314 || GetOffsetFromPtr(startAddress, endAddress) < in MEMCreateExpHeapEx() 1322 MEMiHeapHead* pHeapHd = InitExpHeap_( startAddress, endAddress, optFlag ); in MEMCreateExpHeapEx()
|