HomeSort by relevance Sort by last modified time
    Searched refs:top_arena_ (Results 1 - 2 of 2) sorted by null

  /art/compiler/utils/
scoped_arena_allocator.cc 30 top_arena_(nullptr),
45 top_arena_ = nullptr;
59 if (UNLIKELY(top_arena_ == nullptr)) {
60 top_arena_ = bottom_arena_ = stats_and_pool_.pool->AllocArena(allocation_size);
61 top_arena_->next_ = nullptr;
62 } else if (top_arena_->next_ != nullptr && top_arena_->next_->Size() >= allocation_size) {
63 top_arena_ = top_arena_->next_;
65 Arena* tail = top_arena_->next_
    [all...]
scoped_arena_allocator.h 87 Arena* top_arena_; member in class:art::ArenaStack

Completed in 561 milliseconds