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

  /external/llvm/lib/Support/
Allocator.cpp 26 void printBumpPtrAllocatorStats(unsigned NumSlabs, size_t BytesAllocated,
29 << "Bytes used: " << BytesAllocated << '\n'
31 << "Bytes wasted: " << (TotalMemory - BytesAllocated)
  /external/chromium_org/base/memory/
discardable_memory_manager_unittest.cc 82 size_t BytesAllocated() const { return manager_.GetBytesAllocatedForTest(); }
150 EXPECT_EQ(1024u, BytesAllocated());
162 EXPECT_EQ(0u, BytesAllocated());
170 EXPECT_EQ(1024u, BytesAllocated());
187 EXPECT_EQ(1024u, BytesAllocated());
212 EXPECT_EQ(1024u, BytesAllocated());
235 EXPECT_EQ(1024u, BytesAllocated());
241 EXPECT_EQ(1024u, BytesAllocated());
249 EXPECT_EQ(0u, BytesAllocated());
391 EXPECT_EQ(0u, BytesAllocated());
    [all...]
  /external/llvm/include/llvm/Support/
Allocator.h 112 void printBumpPtrAllocatorStats(unsigned NumSlabs, size_t BytesAllocated,
142 : CurPtr(nullptr), End(nullptr), BytesAllocated(0), Allocator() {}
145 : CurPtr(nullptr), End(nullptr), BytesAllocated(0),
153 BytesAllocated(Old.BytesAllocated),
156 Old.BytesAllocated = 0;
172 BytesAllocated = RHS.BytesAllocated;
178 RHS.BytesAllocated = 0;
191 BytesAllocated = 0
    [all...]
  /art/compiler/utils/
arena_allocator.h 76 size_t BytesAllocated() const { return 0u; }
92 size_t BytesAllocated() const;
187 size_t BytesAllocated() const;
arena_allocator.cc 77 size_t ArenaAllocatorStatsImpl<kCount>::BytesAllocated() const {
96 const size_t bytes_allocated = BytesAllocated();
198 size_t ArenaAllocator::BytesAllocated() const {
199 return ArenaAllocatorStats::BytesAllocated();
scoped_arena_allocator.cc 76 if (PeakStats()->BytesAllocated() < CurrentStats()->BytesAllocated()) {
scoped_arena_allocator.h 43 return PeakStats()->BytesAllocated();
  /art/compiler/dex/
frontend.cc 789 if (cu.arena.BytesAllocated() > (1 * 1024 *1024)) {
796 LOG(INFO) << "MEMINFO " << cu.arena.BytesAllocated() << " " << cu.mir_graph->GetNumBlocks()

Completed in 66 milliseconds