Home | History | Annotate | Download | only in alloc

Lines Matching refs:bytesAllocated

80     size_t bytesAllocated;
250 * Functions to update heapSource->bytesAllocated when an object
259 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
261 heap->bytesAllocated += mspace_usable_size(heap->msp, ptr) +
267 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
274 if (delta < heap->bytesAllocated) {
275 heap->bytesAllocated -= delta;
277 heap->bytesAllocated = 0;
686 value = heap->bytesAllocated;
796 if (heap->bytesAllocated + n > hs->softLimit) {
820 if (heap->bytesAllocated > heap->concurrentStartBytes) {
1091 ret += hs->heaps[0].bytesAllocated;
1262 size_t currentHeapUsed = heap->bytesAllocated;