Home | History | Annotate | Download | only in alloc

Lines Matching refs:alloc

22 #include "alloc/Heap.h"
23 #include "alloc/HeapBitmap.h"
24 #include "alloc/HeapInternal.h"
25 #include "alloc/HeapSource.h"
26 #include "alloc/Verify.h"
789 static void room(size_t *alloc, size_t *avail, size_t *total)
793 *alloc = heapSource->allocBlocks*BLOCK_SIZE;
794 *avail = *total - *alloc;
2073 size_t alloc, unused, total;
2075 room(&alloc, &unused, &total);
2076 LOG_SCAV("BEFORE GC: %zu alloc, %zu free, %zu total.",
2077 alloc, unused, total);
2175 size_t alloc, rem, total;
2177 room(&alloc, &rem, &total);
2178 LOG_SCAV("AFTER GC: %zu alloc, %zu free, %zu total.", alloc, rem, total);