/art/runtime/base/ |
D | arena_allocator.cc | 136 for (const Arena* arena = first; arena != nullptr; arena = arena->next_) { in Dump() 189 Arena::Arena() : bytes_allocated_(0), memory_(nullptr), size_(0), next_(nullptr) { in Arena() 303 free_arenas_ = free_arenas_->next_; in ReclaimMemory() 320 free_arenas_ = free_arenas_->next_; in AllocArena() 336 for (Arena* arena = free_arenas_; arena != nullptr; arena = arena->next_) { in TrimMaps() 345 for (Arena* arena = free_arenas_; arena != nullptr; arena = arena->next_) { in GetBytesAllocated() 353 for (Arena* arena = first; arena != nullptr; arena = arena->next_) { in FreeArenaChain() 361 Arena* next = first->next_; in FreeArenaChain() 370 while (last->next_ != nullptr) { in FreeArenaChain() 371 last = last->next_; in FreeArenaChain() [all …]
|
D | scoped_arena_allocator.cc | 59 top_arena_->next_ = nullptr; in AllocateFromNextArena() 60 } else if (top_arena_->next_ != nullptr && top_arena_->next_->Size() >= allocation_size) { in AllocateFromNextArena() 61 top_arena_ = top_arena_->next_; in AllocateFromNextArena() 63 Arena* tail = top_arena_->next_; in AllocateFromNextArena() 64 top_arena_->next_ = stats_and_pool_.pool->AllocArena(allocation_size); in AllocateFromNextArena() 65 top_arena_ = top_arena_->next_; in AllocateFromNextArena() 66 top_arena_->next_ = tail; in AllocateFromNextArena()
|
D | arena_allocator.h | 237 Arena* next_; variable
|
D | arena_allocator_test.cc | 28 for (Arena* a = allocator->arena_head_; a != nullptr; a = a->next_) { in NumberOfArenas()
|
/art/compiler/utils/ |
D | assembler.h | 70 SlowPath() : next_(nullptr) {} in SlowPath() 84 SlowPath *next_; variable 143 for ( ; cur->next_ != nullptr ; cur = cur->next_) {} in EnqueueSlowPath() 144 cur->next_ = slowpath; in EnqueueSlowPath() 154 next = cur->next_; in EmitSlowPaths()
|
/art/runtime/jit/ |
D | debugger_interface.cc | 89 std::atomic<JITCodeEntry*> next_; member 170 entry->next_.store(head, std::memory_order_relaxed); in CreateJITCodeEntryInternal() 201 JITCodeEntry* next = entry->next_.load(std::memory_order_relaxed); in DeleteJITCodeEntryInternal() 203 entry->prev_->next_.store(next, std::memory_order_relaxed); in DeleteJITCodeEntryInternal()
|
/art/compiler/optimizing/ |
D | ssa_liveness_analysis.h | 65 LiveRange(size_t start, size_t end, LiveRange* next) : start_(start), end_(end), next_(next) { in LiveRange() 67 DCHECK(next_ == nullptr || next_->GetStart() > GetEnd()); in LiveRange() 72 LiveRange* GetNext() const { return next_; } in GetNext() 89 start_, end_, next_ == nullptr ? nullptr : next_->Dup(allocator)); in Dup() 93 return next_ == nullptr ? this : next_->GetLastRange(); in GetLastRange() 99 LiveRange* next_; variable 231 next_(nullptr) {} in SafepointPosition() 234 next_ = next; in SetNext() 242 return next_; in GetNext() 255 SafepointPosition* next_; variable [all …]
|
D | nodes.cc | 1146 last_instruction_->next_ = instruction; in AddInstruction() 1156 instruction->next_ = cursor; in InsertInstructionBefore() 1160 instruction->next_ = cursor; in InsertInstructionBefore() 1162 instruction->previous_->next_ = instruction; in InsertInstructionBefore() 1169 cursor->next_ = instruction; in InsertInstructionAfter() 1173 instruction->next_ = cursor->next_; in InsertInstructionAfter() 1175 cursor->next_ = instruction; in InsertInstructionAfter() 1176 instruction->next_->previous_ = instruction; in InsertInstructionAfter() 1182 instruction->previous_->next_ = instruction->next_; in RemoveInstruction() 1184 if (instruction->next_ != nullptr) { in RemoveInstruction() [all …]
|
D | gvn.cc | 192 : instruction_(instruction), hash_code_(hash_code), next_(next) {} in Node() 196 Node* GetNext() const { return next_; } in GetNext() 197 void SetNext(Node* node) { next_ = node; } in SetNext() 206 Node* next_; member in art::ValueSet::Node
|
D | bounds_check_elimination.cc | 531 next_(nullptr) {} in BCEVisitor() 541 next_ = instruction->GetNext(); in VisitBasicBlock() 543 instruction = next_; in VisitBasicBlock() 547 next_ = instruction->GetNext(); in VisitBasicBlock() 549 instruction = next_; in VisitBasicBlock() 1896 if (instruction == next_) { in ReplaceInstruction() 1897 next_ = next_->GetNext(); in ReplaceInstruction() 1936 HInstruction* next_; member in art::BCEVisitor
|
D | nodes.h | 1964 next_(nullptr), in HInstruction() 1983 HInstruction* GetNext() const { return next_; } in GetNext() 2392 next_(nullptr), in HInstruction() 2451 HInstruction* next_; variable 2508 next_ = Done() ? nullptr : instruction_->GetNext(); in HInstructionIterator() 2514 instruction_ = next_; in Advance() 2515 next_ = Done() ? nullptr : instruction_->GetNext(); in Advance() 2520 HInstruction* next_; variable 2551 next_ = Done() ? nullptr : instruction_->GetPrevious(); in HBackwardInstructionIterator() 2557 instruction_ = next_; in Advance() [all …]
|
/art/runtime/mirror/ |
D | reference.h | 142 HeapReference<FinalizerReference> next_;
|
/art/runtime/gc/allocator/ |
D | rosalloc.h | 120 return next_; in Next() 123 next_ = next; in SetNext() 130 next_ = nullptr; in Clear() 134 Slot* next_; // Next slot in the list. 844 return OFFSETOF_MEMBER(Slot, next_); in RunSlotNextOffset()
|
/art/runtime/ |
D | thread.cc | 315 FrameIdToShadowFrame* GetNext() const { return next_; } in GetNext() 316 void SetNext(FrameIdToShadowFrame* next) { next_ = next; } in SetNext() 327 next_(next) {} in FrameIdToShadowFrame() 331 FrameIdToShadowFrame* next_; member in art::FrameIdToShadowFrame
|
D | class_linker_test.cc | 688 addOffset(OFFSETOF_MEMBER(mirror::FinalizerReference, next_), "next"); in FinalizerReferenceOffsets()
|