Searched refs:ArenaAllocatorStatsImpl (Results 1 – 2 of 2) sorted by relevance
75 class ArenaAllocatorStatsImpl; variable78 class ArenaAllocatorStatsImpl<false> {80 ArenaAllocatorStatsImpl() = default;81 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;82 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;84 void Copy(const ArenaAllocatorStatsImpl& other) { UNUSED(other); } in Copy()94 class ArenaAllocatorStatsImpl {96 ArenaAllocatorStatsImpl();97 ArenaAllocatorStatsImpl(const ArenaAllocatorStatsImpl& other) = default;98 ArenaAllocatorStatsImpl& operator = (const ArenaAllocatorStatsImpl& other) = delete;[all …]
34 const char* const ArenaAllocatorStatsImpl<kCount>::kAllocNames[] = {64 ArenaAllocatorStatsImpl<kCount>::ArenaAllocatorStatsImpl() in ArenaAllocatorStatsImpl() function in art::ArenaAllocatorStatsImpl70 void ArenaAllocatorStatsImpl<kCount>::Copy(const ArenaAllocatorStatsImpl& other) { in Copy()76 void ArenaAllocatorStatsImpl<kCount>::RecordAlloc(size_t bytes, ArenaAllocKind kind) { in RecordAlloc()82 size_t ArenaAllocatorStatsImpl<kCount>::NumAllocations() const { in NumAllocations()87 size_t ArenaAllocatorStatsImpl<kCount>::BytesAllocated() const { in BytesAllocated()93 void ArenaAllocatorStatsImpl<kCount>::Dump(std::ostream& os, const Arena* first, in Dump()122 template class ArenaAllocatorStatsImpl<kArenaAllocatorCountAllocations>; variable