Home
last modified time | relevance | path

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

/art/libartbase/base/
Darena_allocator.cc124 size_t ArenaAllocatorStatsImpl<kCount>::BytesAllocated() const { in BytesAllocated() function in art::ArenaAllocatorStatsImpl
143 const size_t bytes_allocated = BytesAllocated(); in Dump()
191 size_t ArenaAllocator::BytesAllocated() const { in BytesAllocated() function in art::ArenaAllocator
192 return ArenaAllocatorStats::BytesAllocated(); in BytesAllocated()
Dscoped_arena_allocator.cc74 if (PeakStats()->BytesAllocated() < CurrentStats()->BytesAllocated()) { in UpdatePeakStatsAndRestore()
Darena_allocator.h123 size_t BytesAllocated() const { return 0u; } in BytesAllocated() function
139 size_t BytesAllocated() const;
344 size_t BytesAllocated() const;
Dscoped_arena_allocator.h59 return PeakStats()->BytesAllocated(); in PeakBytesAllocated()
/art/runtime/gc/space/
Dregion_space-inl.h137 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
141 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
146 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
151 bytes += r->BytesAllocated(); in GetBytesAllocatedInternal()
489 inline size_t RegionSpace::Region::BytesAllocated() const { in BytesAllocated() function
Dregion_space.cc274 DCHECK_LE(live_bytes_, BytesAllocated()); in ShouldBeEvacuated()
275 const size_t bytes_allocated = RoundUp(BytesAllocated(), kRegionSize); in ShouldBeEvacuated()
385 num_expected_large_tails = RoundUp(r->BytesAllocated(), kRegionSize) / kRegionSize - 1; in SetFromSpace()
531 *cleared_bytes += r->BytesAllocated(); in ClearFromSpace()
538 *cleared_bytes += r->BytesAllocated(); in ClearFromSpace()
960 << (static_cast<float>(live_bytes_) / RoundUp(BytesAllocated(), kRegionSize)); in Dump()
Dregion_space.h565 DCHECK_LE(live_bytes_, BytesAllocated()); in AddLiveBytes()
577 size_t BytesAllocated() const;
/art/compiler/optimizing/
Doptimizing_compiler.cc1080 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated(); in Compile()
1418 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated(); in JitCompile()