Searched refs:BytesAllocated (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/contrib/llvm/lib/Support/
H A DAllocator.cpp27 Allocator(allocator), CurSlab(0), BytesAllocated(0) { }
31 Allocator(DefaultSlabAllocator), CurSlab(0), BytesAllocated(0) { }
55 if (BytesAllocated >= SlabSize * 128)
90 BytesAllocated = 0;
100 BytesAllocated += Size;
168 << "Bytes used: " << BytesAllocated << '\n'
170 << "Bytes wasted: " << (TotalMemory - BytesAllocated)
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
H A DAllocator.h122 /// BytesAllocated - This field tracks how many bytes we've allocated, so
124 size_t BytesAllocated; member in class:llvm::BumpPtrAllocator

Completed in 56 milliseconds