Searched defs:maximumSize (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/alloc/
H A DCopying.cpp225 size_t maximumSize; member in struct:HeapSource
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 (*gcHeap)->heapSource->maximumSize);
537 value = heapSource->maximumSize;
[all...]
H A DHeapSource.cpp69 size_t maximumSize; member in struct:Heap
114 size_t maximumSize; member in struct:HeapSource
372 static bool addInitialHeap(HeapSource *hs, mspace msp, size_t maximumSize) argument
380 hs->heaps[0].maximumSize = maximumSize;
383 hs->heaps[0].limit = hs->heapBase + maximumSize;
445 if (overhead + hs->minFree >= hs->maximumSize) {
448 overhead, hs->maximumSize);
452 heap.maximumSize = hs->growthLimit - overhead;
455 heap.limit = heap.base + heap.maximumSize;
561 allocMarkStack(GcMarkStack *stack, size_t maximumSize) argument
592 dvmHeapSourceStartup(size_t startSize, size_t maximumSize, size_t growthLimit) argument
1282 size_t maximumSize = getMaximumSize(hs); local
[all...]

Completed in 903 milliseconds