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

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_lfstack.h28 atomic_store(&head_, 0, memory_order_relaxed);
32 return (atomic_load(&head_, memory_order_relaxed) & kPtrMask) == 0;
36 u64 cmp = atomic_load(&head_, memory_order_relaxed);
41 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
48 u64 cmp = atomic_load(&head_, memory_order_acquire);
56 if (atomic_compare_exchange_weak(&head_, &cmp, xch,
68 atomic_uint64_t head_; member in struct:__sanitizer::LFStack
/freebsd-13-stable/contrib/googletest/googletest/samples/
H A Dsample3-inl.h75 Queue() : head_(NULL), last_(NULL), size_(0) {}
84 QueueNode<E>* node = head_;
94 head_ = last_ = NULL;
103 QueueNode<E>* Head() { return head_; }
104 const QueueNode<E>* Head() const { return head_; }
118 head_ = last_ = new_node;
134 const QueueNode<E>* const old_head = head_;
135 head_ = head_->next_;
153 for (const QueueNode<E>* node = head_; nod
161 QueueNode<E>* head_; // The first node of the queue. member in class:Queue
[all...]

Completed in 97 milliseconds