HomeSort by relevance Sort by last modified time
    Searched refs:BytesAllocated (Results 1 - 14 of 14) sorted by null

  /external/llvm/lib/Support/
Allocator.cpp 21 void printBumpPtrAllocatorStats(unsigned NumSlabs, size_t BytesAllocated,
24 << "Bytes used: " << BytesAllocated << '\n'
26 << "Bytes wasted: " << (TotalMemory - BytesAllocated)
  /external/llvm/include/llvm/Support/
Allocator.h 115 void printBumpPtrAllocatorStats(unsigned NumSlabs, size_t BytesAllocated,
145 : CurPtr(nullptr), End(nullptr), BytesAllocated(0), Allocator() {}
148 : CurPtr(nullptr), End(nullptr), BytesAllocated(0),
156 BytesAllocated(Old.BytesAllocated),
159 Old.BytesAllocated = 0;
175 BytesAllocated = RHS.BytesAllocated;
181 RHS.BytesAllocated = 0;
198 BytesAllocated = 0
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
Allocator.cpp 26 CurSlab(0), BytesAllocated(0) { }
50 if (BytesAllocated >= SlabSize * 128)
94 BytesAllocated += Size;
156 << "Bytes used: " << BytesAllocated << '\n'
158 << "Bytes wasted: " << (TotalMemory - BytesAllocated)
  /art/runtime/base/
scoped_arena_allocator.cc 75 if (PeakStats()->BytesAllocated() < CurrentStats()->BytesAllocated()) {
arena_allocator.h 117 size_t BytesAllocated() const { return 0u; }
133 size_t BytesAllocated() const;
367 size_t BytesAllocated() const;
372 // TODO: Change BytesAllocated to this behavior?
arena_allocator.cc 117 size_t ArenaAllocatorStatsImpl<kCount>::BytesAllocated() const {
136 const size_t bytes_allocated = BytesAllocated();
358 size_t ArenaAllocator::BytesAllocated() const {
359 return ArenaAllocatorStats::BytesAllocated();
scoped_arena_allocator.h 57 return PeakStats()->BytesAllocated();
  /art/runtime/gc/space/
region_space-inl.h 166 bytes += r->BytesAllocated();
170 bytes += r->BytesAllocated();
175 bytes += r->BytesAllocated();
180 bytes += r->BytesAllocated();
339 inline size_t RegionSpace::Region::BytesAllocated() const {
region_space.cc 166 DCHECK_LE(live_bytes_, BytesAllocated());
167 const size_t bytes_allocated = RoundUp(BytesAllocated(), kRegionSize);
221 num_expected_large_tails = RoundUp(r->BytesAllocated(), kRegionSize) / kRegionSize - 1;
275 *cleared_bytes += r->BytesAllocated();
294 *cleared_bytes += r->BytesAllocated();
region_space.h 415 DCHECK_LE(live_bytes_, BytesAllocated());
422 size_t BytesAllocated() const;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Allocator.h 119 /// BytesAllocated - This field tracks how many bytes we've allocated, so
121 size_t BytesAllocated;
  /art/compiler/optimizing/
optimizing_compiler.cc     [all...]
  /external/protobuf/php/ext/google/protobuf/
upb.h     [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
upb.h 615 size_t BytesAllocated() const {
    [all...]

Completed in 536 milliseconds