Searched defs:ArenaAllocator (Results 1 - 2 of 2) sorted by relevance

/art/runtime/base/
H A Darena_allocator.cc187 return (alignof(std::max_align_t) < ArenaAllocator::kArenaAlignment)
188 ? ArenaAllocator::kArenaAlignment - alignof(std::max_align_t)
205 memory_ = AlignUp(unaligned_memory_, ArenaAllocator::kArenaAlignment);
213 DCHECK_ALIGNED(memory_, ArenaAllocator::kArenaAlignment);
247 static_assert(ArenaAllocator::kArenaAlignment <= kPageSize,
249 DCHECK_ALIGNED(memory_, ArenaAllocator::kArenaAlignment);
358 size_t ArenaAllocator::BytesAllocated() const {
362 size_t ArenaAllocator::BytesUsed() const {
373 ArenaAllocator::ArenaAllocator(ArenaPoo function in class:art::ArenaAllocator
[all...]
H A Darena_allocator.h34 class ArenaAllocator;
236 friend class ArenaAllocator;
274 // the ArenaAllocator. It's returned to the ArenaPool only when the ArenaAllocator
276 class ArenaAllocator class in namespace:art
279 explicit ArenaAllocator(ArenaPool* pool);
280 ~ArenaAllocator();
406 DISALLOW_COPY_AND_ASSIGN(ArenaAllocator);
407 }; // ArenaAllocator

Completed in 244 milliseconds