Home | History | Annotate | Download | only in alloc

Lines Matching refs:total

184     /* Total number of blocks available for allocation. */
824 static void room(size_t *alloc, size_t *avail, size_t *total)
829 *total = heapSource->totalBlocks*BLOCK_SIZE;
831 *avail = *total - *alloc;
2189 size_t alloc, unused, total;
2191 room(&alloc, &unused, &total);
2192 LOG_SCAV("BEFORE GC: %zu alloc, %zu free, %zu total.",
2193 alloc, unused, total);
2291 size_t alloc, rem, total;
2293 room(&alloc, &rem, &total);
2294 LOG_SCAV("AFTER GC: %zu alloc, %zu free, %zu total.", alloc, rem, total);