Home
last modified time | relevance | path

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

/rocksdb-6.9/utilities/persistent_cache/
Dlrulist.h41 assert(!tail_); in ~LRUList()
52 assert((!head_ && !tail_) || (head_ && tail_)); in Push()
54 assert(!tail_ || !tail_->next_); in Push()
62 if (!tail_) { in Push()
63 tail_ = t; in Push()
130 tail_ = tail_->prev_; in UnlinkImpl()
152 assert((!head_ && !tail_) || (head_ && tail_)); in PushBackImpl()
154 assert(!tail_ || !tail_->next_); in PushBackImpl()
157 if (tail_) { in PushBackImpl()
161 tail_ = t; in PushBackImpl()
[all …]
/rocksdb-6.9/third-party/folly/folly/synchronization/
DParkingLot.h69 WaitNodeBase* tail_; member
75 if (tail_) { in push_back()
77 node->prev_ = tail_; in push_back()
78 tail_->next_ = node; in push_back()
79 tail_ = node; in push_back()
81 tail_ = node; in push_back()
88 if (head_ == node && tail_ == node) { in erase()
92 tail_ = nullptr; in erase()
98 } else if (tail_ == node) { in erase()
101 tail_ = node->prev_; in erase()
[all …]