Searched defs:IntrusiveList (Results 1 – 2 of 2) sorted by relevance
28 struct IntrusiveList { struct29 friend class Iterator;31 void clear() { in clear()36 bool empty() const { return size_ == 0; } in empty()37 uptr size() const { return size_; } in size()39 void push_back(Item *x) { in push_back()75 void append_front(IntrusiveList<Item> *l) { in append_front() argument89 void append_back(IntrusiveList<Item> *l) { in append_back() argument103 void CheckConsistency() { in CheckConsistency()134 typedef IteratorBase<IntrusiveList<Item>, Item> Iterator; argument[all …]
63 TEST(SanitizerCommon, IntrusiveList) { in TEST() argument