Searched refs:next_ (Results 1 - 15 of 15) sorted by relevance

/art/runtime/base/
H A Dscoped_arena_allocator.cc59 top_arena_->next_ = nullptr;
60 } else if (top_arena_->next_ != nullptr && top_arena_->next_->Size() >= allocation_size) {
61 top_arena_ = top_arena_->next_;
63 Arena* tail = top_arena_->next_;
64 top_arena_->next_ = stats_and_pool_.pool->AllocArena(allocation_size);
65 top_arena_ = top_arena_->next_;
66 top_arena_->next_ = tail;
H A Darena_allocator.cc136 for (const Arena* arena = first; arena != nullptr; arena = arena->next_) {
189 Arena::Arena() : bytes_allocated_(0), memory_(nullptr), size_(0), next_(nullptr) {
303 free_arenas_ = free_arenas_->next_;
320 free_arenas_ = free_arenas_->next_;
336 for (Arena* arena = free_arenas_; arena != nullptr; arena = arena->next_) {
345 for (Arena* arena = free_arenas_; arena != nullptr; arena = arena->next_) {
353 for (Arena* arena = first; arena != nullptr; arena = arena->next_) {
361 Arena* next = first->next_;
370 while (last->next_ != nullptr) {
371 last = last->next_;
[all...]
H A Darena_allocator.h237 Arena* next_; member in class:art::Arena
H A Darena_allocator_test.cc28 for (Arena* a = allocator->arena_head_; a != nullptr; a = a->next_) {
/art/compiler/utils/
H A Dassembler.h70 SlowPath() : next_(nullptr) {}
84 SlowPath *next_; member in class:art::SlowPath
143 for ( ; cur->next_ != nullptr ; cur = cur->next_) {}
144 cur->next_ = slowpath;
154 next = cur->next_;
/art/runtime/jit/
H A Ddebugger_interface.cc89 std::atomic<JITCodeEntry*> next_; member in struct:art::JITCodeEntry
170 entry->next_.store(head, std::memory_order_relaxed);
201 JITCodeEntry* next = entry->next_.load(std::memory_order_relaxed);
203 entry->prev_->next_.store(next, std::memory_order_relaxed);
/art/compiler/optimizing/
H A Dssa_liveness_analysis.h65 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) {
67 DCHECK(next_ == nullptr || next_->GetStart() > GetEnd());
72 LiveRange* GetNext() const { return next_; }
89 start_, end_, next_ == nullptr ? nullptr : next_->Dup(allocator));
93 return next_ == nullptr ? this : next_->GetLastRange();
99 LiveRange* next_; member in class:art::FINAL
231 next_(nullpt
255 SafepointPosition* next_; member in class:art::SafepointPosition
[all...]
H A Dgvn.cc192 : instruction_(instruction), hash_code_(hash_code), next_(next) {}
196 Node* GetNext() const { return next_; }
197 void SetNext(Node* node) { next_ = node; }
206 Node* next_; member in class:art::ValueSet::Node
H A Dnodes.cc1146 last_instruction_->next_ = instruction;
1156 instruction->next_ = cursor;
1160 instruction->next_ = cursor;
1162 instruction->previous_->next_ = instruction;
1169 cursor->next_ = instruction;
1173 instruction->next_ = cursor->next_;
1175 cursor->next_ = instruction;
1176 instruction->next_->previous_ = instruction;
1182 instruction->previous_->next_
[all...]
H A Dbounds_check_elimination.cc531 next_(nullptr) {}
538 // must advance next_ if that instruction is deleted during iteration.
541 next_ = instruction->GetNext();
543 instruction = next_;
547 next_ = instruction->GetNext();
549 instruction = next_;
1896 if (instruction == next_) {
1897 next_ = next_->GetNext();
1936 HInstruction* next_; member in class:art::BCEVisitor
[all...]
H A Dnodes.h1964 next_(nullptr),
1983 HInstruction* GetNext() const { return next_; }
2392 next_(nullptr),
2451 HInstruction* next_; member in class:art::HInstruction
2508 next_ = Done() ? nullptr : instruction_->GetNext();
2514 instruction_ = next_;
2515 next_ = Done() ? nullptr : instruction_->GetNext();
2520 HInstruction* next_; member in class:art::HInstructionIterator
2551 next_ = Done() ? nullptr : instruction_->GetPrevious();
2557 instruction_ = next_;
2563 HInstruction* next_; member in class:art::HBackwardInstructionIterator
[all...]
/art/runtime/mirror/
H A Dreference.h142 HeapReference<FinalizerReference> next_; member in class:art::mirror::FinalizerReference
/art/runtime/gc/allocator/
H A Drosalloc.h120 return next_;
123 next_ = next;
130 next_ = nullptr;
134 Slot* next_; // Next slot in the list. member in class:art::gc::allocator::RosAlloc::Slot
844 return OFFSETOF_MEMBER(Slot, next_);
/art/runtime/
H A Dthread.cc315 FrameIdToShadowFrame* GetNext() const { return next_; }
316 void SetNext(FrameIdToShadowFrame* next) { next_ = next; }
327 next_(next) {}
331 FrameIdToShadowFrame* next_; member in class:art::FrameIdToShadowFrame
H A Dclass_linker_test.cc688 addOffset(OFFSETOF_MEMBER(mirror::FinalizerReference, next_), "next");

Completed in 1838 milliseconds