Lines Matching refs:tail
56 FutexWaitListNode** tail) {
57 // For updating head & tail once we've iterated all nodes.
74 *tail = new_tail;
80 // list, it must be |head|, and if it's the last node, it must be |tail|.
82 FutexWaitListNode* tail);
91 FutexWaitListNode* tail;
193 node->prev_ = it->second.tail;
194 it->second.tail->next_ = node;
195 it->second.tail = node;
207 it->second.tail->next_ = node;
208 node->prev_ = it->second.tail;
209 it->second.tail = node;
230 DCHECK_EQ(node, it->second.tail);
231 it->second.tail = node->prev_;
888 FutexWaitListNode*& tail = it->second.tail;
889 FutexWaitList::DeleteNodesForIsolate(isolate, &head, &tail);
890 // head and tail are either both nullptr or both non-nullptr.
891 DCHECK_EQ(head == nullptr, tail == nullptr);
989 FutexWaitListNode* tail) {
992 DCHECK_NE(node, tail);
995 DCHECK_EQ(node, tail);
1017 VerifyNode(node, it.second.head, it.second.tail);
1025 VerifyNode(node, it.second.head, it.second.tail);