Home
last modified time | relevance | path

Searched refs:head_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/gc/allocator/
Drosalloc.h144 SlotFreeList() : head_(0U), tail_(0), size_(0), padding_(0) {} in SlotFreeList()
146 return reinterpret_cast<Slot*>(head_); in Head()
161 Slot** headp = reinterpret_cast<Slot**>(&head_); in Remove()
196 Slot** headp = reinterpret_cast<Slot**>(&head_); in Add()
235 Slot** headp = reinterpret_cast<Slot**>(&head_); in Merge()
261 head_ = 0; in Reset()
269 Slot* head = reinterpret_cast<Slot*>(head_); in Verify()
298 uint64_t head_;
837 return OFFSETOF_MEMBER(SlotFreeList<false>, head_); in RunFreeListHeadOffset()
/art/runtime/jit/
Ddebugger_interface.cc111 std::atomic<JITCodeEntry*> head_{nullptr}; // Head of link list of all entries. member
180 JITCodeEntry* head = descriptor.head_.load(std::memory_order_relaxed); in CreateJITCodeEntryInternal()
194 descriptor.head_.store(entry, std::memory_order_relaxed); in CreateJITCodeEntryInternal()
222 descriptor.head_.store(next, std::memory_order_relaxed); in DeleteJITCodeEntryInternal()