Home
last modified time | relevance | path

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

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_list.h28 struct IntrusiveList { struct
29 void clear() { in clear()
34 bool empty() const { return size_ == 0; } in empty()
35 uptr size() const { return size_; } in size()
37 void push_back(Item *x) { in push_back()
73 void append_front(IntrusiveList<Item> *l) { in append_front() argument
87 void append_back(IntrusiveList<Item> *l) { in append_back() argument
101 void CheckConsistency() { in CheckConsistency()
117 uptr size_;
118 Item *first_;
[all …]
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_list_test.cc63 TEST(SanitizerCommon, IntrusiveList) { in TEST() argument