Home
last modified time | relevance | path

Searched refs:alloc_stats_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/base/
Darena_allocator.cc66 std::fill_n(alloc_stats_, arraysize(alloc_stats_), 0u); in ArenaAllocatorStatsImpl()
72 std::copy(other.alloc_stats_, other.alloc_stats_ + arraysize(alloc_stats_), alloc_stats_); in Copy()
77 alloc_stats_[kind] += bytes; in RecordAlloc()
89 return std::accumulate(alloc_stats_, alloc_stats_ + arraysize(alloc_stats_), init); in BytesAllocated()
117 os << kAllocNames[i] << std::setw(10) << alloc_stats_[i] << "\n"; in Dump()
Darena_allocator.h109 size_t alloc_stats_[kNumArenaAllocKinds]; // Bytes used by various allocation kinds. variable