Home
last modified time | relevance | path

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

/art/runtime/jit/
Ddebugger_interface.cc103 std::atomic<JITCodeEntry*> head_{nullptr}; // Head of link list of all entries. member
164 JITCodeEntry* head = descriptor.head_.load(std::memory_order_relaxed); in CreateJITCodeEntryInternal()
178 descriptor.head_.store(entry, std::memory_order_relaxed); in CreateJITCodeEntryInternal()
205 descriptor.head_.store(next, std::memory_order_relaxed); in DeleteJITCodeEntryInternal()
/art/runtime/gc/allocator/
Drosalloc.h145 SlotFreeList() : head_(0U), tail_(0), size_(0), padding_(0) {} in SlotFreeList()
147 return reinterpret_cast<Slot*>(head_); in Head()
162 Slot** headp = reinterpret_cast<Slot**>(&head_); in Remove()
197 Slot** headp = reinterpret_cast<Slot**>(&head_); in Add()
236 Slot** headp = reinterpret_cast<Slot**>(&head_); in Merge()
262 head_ = 0; in Reset()
270 Slot* head = reinterpret_cast<Slot*>(head_); in Verify()
299 uint64_t head_;
838 return OFFSETOF_MEMBER(SlotFreeList<false>, head_); in RunFreeListHeadOffset()