Home | History | Annotate | Download | only in alloc

Lines Matching defs:maximumSize

225     size_t maximumSize;
229 * equivalent to the maximumSize.
451 heapSource->maximumSize = alignUp(absoluteMaxSize, BLOCK_SIZE);
453 heapSource->currentSize = heapSource->maximumSize;
456 heapSource->blockBase = virtualAlloc(heapSource->maximumSize);
459 heapSource->limitBlock = ((uintptr_t) heapSource->blockBase + heapSource->maximumSize) >> BLOCK_SHIFT;
464 assert(heapSource->totalBlocks = heapSource->maximumSize / BLOCK_SIZE);
483 heapSource->maximumSize,
520 maximumSize);
537 value = heapSource->maximumSize;
540 value = heapSource->maximumSize;
804 limit = heapSource->blockBase + heapSource->maximumSize;