Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAllocator.cpp22 size_t TotalMemory) { in printBumpPtrAllocatorStats() argument
25 << "Bytes allocated: " << TotalMemory << '\n' in printBumpPtrAllocatorStats()
26 << "Bytes wasted: " << (TotalMemory - BytesAllocated) in printBumpPtrAllocatorStats()
/external/llvm/include/llvm/Support/
DAllocator.h116 size_t TotalMemory);
262 size_t TotalMemory = 0; in getTotalMemory() local
264 TotalMemory += computeSlabSize(std::distance(Slabs.begin(), I)); in getTotalMemory()
266 TotalMemory += PtrAndSize.second; in getTotalMemory()
267 return TotalMemory; in getTotalMemory()