Home
last modified time | relevance | path

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

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_list.h29 struct IntrusiveList { struct
30 friend class Iterator;
32 void clear() { in clear()
37 bool empty() const { return size_ == 0; } in empty()
38 uptr size() const { return size_; } in size()
40 void push_back(Item *x) { in push_back()
53 void push_front(Item *x) { in push_front()
78 void append_front(IntrusiveList<Item> *l) { in append_front() argument
92 void append_back(IntrusiveList<Item> *l) { in append_back() argument
106 void CheckConsistency() { in CheckConsistency()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/util/
Dilist_node.h24 class IntrusiveList; variable
104 friend IntrusiveList<NodeType>; variable
Dilist.h141 friend IntrusiveList; variable
209 inline IntrusiveList<NodeType>::IntrusiveList() : sentinel_() { in IntrusiveList() function
216 IntrusiveList<NodeType>::IntrusiveList(IntrusiveList&& list) : sentinel_() { in IntrusiveList() function
/external/deqp-deps/SPIRV-Tools/source/util/
Dilist_node.h24 class IntrusiveList; variable
104 friend IntrusiveList<NodeType>; variable
Dilist.h141 friend IntrusiveList; variable
209 inline IntrusiveList<NodeType>::IntrusiveList() : sentinel_() { in IntrusiveList() function
216 IntrusiveList<NodeType>::IntrusiveList(IntrusiveList&& list) : sentinel_() { in IntrusiveList() function
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_list_test.cc63 TEST(SanitizerCommon, IntrusiveList) { in TEST() argument