Home | History | Annotate | Download | only in alloc

Lines Matching full:maximumsize

225     size_t maximumSize;
229 * equivalent to the maximumSize.
452 heapSource->maximumSize = alignUp(absoluteMaxSize, BLOCK_SIZE);
454 heapSource->currentSize = heapSource->maximumSize;
457 heapSource->blockBase = virtualAlloc(heapSource->maximumSize);
460 heapSource->limitBlock = ((uintptr_t) heapSource->blockBase + heapSource->maximumSize) >> BLOCK_SHIFT;
465 assert(heapSource->totalBlocks = heapSource->maximumSize / BLOCK_SIZE);
485 heapSource->maximumSize,
523 (*gcHeap)->heapSource->maximumSize);
540 value = heapSource->maximumSize;
543 value = heapSource->maximumSize;
807 limit = heapSource->blockBase + heapSource->maximumSize;