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

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

Completed in 211 milliseconds