Home
last modified time | relevance | path

Searched refs:BytesAllocated (Results 1 – 8 of 8) sorted by relevance

/art/runtime/base/
Darena_allocator.cc87 size_t ArenaAllocatorStatsImpl<kCount>::BytesAllocated() const { in BytesAllocated() function in art::ArenaAllocatorStatsImpl
106 const size_t bytes_allocated = BytesAllocated(); in Dump()
237 size_t ArenaAllocator::BytesAllocated() const { in BytesAllocated() function in art::ArenaAllocator
238 return ArenaAllocatorStats::BytesAllocated(); in BytesAllocated()
Dscoped_arena_allocator.cc76 if (PeakStats()->BytesAllocated() < CurrentStats()->BytesAllocated()) { in UpdatePeakStatsAndRestore()
Darena_allocator.h87 size_t BytesAllocated() const { return 0u; } in BytesAllocated() function
103 size_t BytesAllocated() const;
259 size_t BytesAllocated() const;
Dscoped_arena_allocator.h43 return PeakStats()->BytesAllocated(); in PeakBytesAllocated()
/art/runtime/gc/space/
Dregion_space-inl.h167 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
171 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
176 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
181 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
Dregion_space.h380 DCHECK_LE(live_bytes_, BytesAllocated()); in AddLiveBytes()
391 DCHECK_LE(live_bytes_, BytesAllocated()); in GetLivePercent()
392 size_t bytes_allocated = RoundUp(BytesAllocated(), kRegionSize); in GetLivePercent()
399 size_t BytesAllocated() const { in BytesAllocated() function
Dregion_space.cc178 num_expected_large_tails = RoundUp(r->BytesAllocated(), kRegionSize) / kRegionSize - 1; in SetFromSpace()
/art/compiler/dex/quick/
Dquick_compiler.cc773 if (cu.arena.BytesAllocated() > (1 * 1024 *1024)) { in Compile()
780 LOG(INFO) << "MEMINFO " << cu.arena.BytesAllocated() << " " << cu.mir_graph->GetNumBlocks() in Compile()