Home
last modified time | relevance | path

Searched refs:AllocatorTag (Results 1 – 3 of 3) sorted by relevance

/art/runtime/base/
Dallocator.h48 enum AllocatorTag { enum
73 std::ostream& operator<<(std::ostream& os, const AllocatorTag& tag);
89 inline void RegisterAllocation(AllocatorTag tag, size_t bytes) { in RegisterAllocation()
97 inline void RegisterFree(AllocatorTag tag, size_t bytes) { in RegisterFree()
104 template<class T, AllocatorTag kTag>
147 static constexpr AllocatorTag GetTag() { in GetTag()
152 template<class T, AllocatorTag kTag>
160 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>
165 template<class Key, AllocatorTag kTag, class Compare = std::less<Key>>
Dallocator.cc92 os << static_cast<AllocatorTag>(i) << " active=" << bytes_used << " max=" in Dump()
/art/runtime/
Dsafe_map.h135 template<class Key, class T, AllocatorTag kTag, class Compare = std::less<Key>>