Lines Matching defs:total
391 return stats.total.usedBytes;
397 return stats.total.usedBytes + stats.total.unusedBytes;
413 uint64_t free = stats.total.unusedBytes;
414 uint64_t used = stats.total.usedBytes;
415 uint64_t total = free + used;
419 out->appendf("vma_total: %llu (%d MB)%s", total, total / MB, sep);
422 stats.total.blockCount <= maxBlockCount ? stats.total.blockCount : maxBlockCount, maxBlockCount, sep);
424 stats.total.blockCount <= maxBlockCount ? 0 : stats.total.blockCount - maxBlockCount, sep);
425 out->appendf("vma_allocationCount: %u%s", stats.total.allocationCount, sep);
426 out->appendf("vma_unusedRangeCount: %u%s", stats.total.unusedRangeCount, sep);
428 stats.total.allocationSizeMin, stats.total.allocationSizeAvg, stats.total.allocationSizeMax, sep);
430 stats.total.unusedRangeSizeMin, stats.total.unusedRangeSizeAvg, stats.total.unusedRangeSizeMax, sep);