Home | History | Annotate | Download | only in alloc

Lines Matching refs:bytesAllocated

75     size_t bytesAllocated;
271 * Functions to update heapSource->bytesAllocated when an object
280 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
282 heap->bytesAllocated += mspace_usable_size(ptr) +
288 assert(heap->bytesAllocated < mspace_footprint(heap->msp));
295 if (delta < heap->bytesAllocated) {
296 heap->bytesAllocated -= delta;
298 heap->bytesAllocated = 0;
814 value = heap->bytesAllocated;
924 if (heap->bytesAllocated + n > hs->softLimit) {
983 if (heap->bytesAllocated > heap->concurrentStartBytes) {
1227 ret += hs->heaps[0].bytesAllocated;
1396 size_t currentHeapUsed = heap->bytesAllocated;