Home | History | Annotate | Download | only in alloc

Lines Matching defs:allocPtr

209     u1 *allocPtr;
487 heapSource->allocPtr = allocateBlocks(heapSource, 1);
488 heapSource->allocLimit = heapSource->allocPtr + BLOCK_SIZE;
591 assert(heapSource->allocPtr != NULL);
595 available = heapSource->allocLimit - heapSource->allocPtr;
599 addr = heapSource->allocPtr;
600 heapSource->allocPtr += aligned;
611 heapSource->allocPtr = addr + aligned;
774 heapSource->allocPtr = NULL;
2097 gDvm.gcHeap->heapSource->allocPtr = allocateBlocks(gDvm.gcHeap->heapSource, 1);
2098 gDvm.gcHeap->heapSource->allocLimit = gDvm.gcHeap->heapSource->allocPtr + BLOCK_SIZE;
2105 promoteBlockByAddr(gDvm.gcHeap->heapSource, gDvm.gcHeap->heapSource->allocPtr);