Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DPerThreadBumpPtrAllocator.h77 size_t TotalMemory = 0; in getTotalMemory() local
80 TotalMemory += Allocators[Idx].getTotalMemory(); in getTotalMemory()
82 return TotalMemory; in getTotalMemory()
H A DAllocator.h40 size_t TotalMemory);
287 size_t TotalMemory = 0; in getTotalMemory() local
289 TotalMemory += computeSlabSize(std::distance(Slabs.begin(), I)); in getTotalMemory()
291 TotalMemory += PtrAndSize.second; in getTotalMemory()
292 return TotalMemory; in getTotalMemory()
/freebsd/stand/i386/libi386/
H A Dvbe.h47 uint16_t TotalMemory; member
H A Dvbe.c948 vbe_print_memory(vbep->TotalMemory << 16); in vbe_print_vbe_info()