Home
last modified time | relevance | path

Searched defs:IntrusiveList (Results 1 – 2 of 2) sorted by relevance

/freebsd-src/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h28 struct IntrusiveList { struct
29 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()
52 void push_front(Item *x) { in push_front()
64 void pop_front() { in pop_front()
88 void append_front(IntrusiveList<Item> *l) { in append_front() argument
102 void append_back(IntrusiveList<Item> *l) { in append_back() argument
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlist.h34 template <class T> struct IntrusiveList { struct
35 bool empty() const { return Size == 0; } in empty()
36 uptr size() const { return Size; } in size()
38 T *front() { return First; } in front()
39 const T *front() const { return First; } in front()
40 T *back() { return Last; } in back()
41 const T *back() const { return Last; } in back()
65 template <class T> void IntrusiveList<T>::checkConsistency() const { in checkConsistency() argument