Home
last modified time | relevance | path

Searched refs:TotalMemory (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DAllocator.cpp21 size_t TotalMemory) { in printBumpPtrAllocatorStats() argument
24 << "Bytes allocated: " << TotalMemory << '\n' in printBumpPtrAllocatorStats()
25 << "Bytes wasted: " << (TotalMemory - BytesAllocated) in printBumpPtrAllocatorStats()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DAllocator.h40 size_t TotalMemory);
282 size_t TotalMemory = 0; in getTotalMemory() local
284 TotalMemory += computeSlabSize(std::distance(Slabs.begin(), I)); in getTotalMemory()
286 TotalMemory += PtrAndSize.second; in getTotalMemory()
287 return TotalMemory; in getTotalMemory()