Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlist.h151 template <class T> struct DoublyLinkedList : IntrusiveList<T> { struct
157 void push_front(T *X) { in push_front()
171 void insert(T *X, T *Y) { in insert()
185 void push_back(T *X) { in push_back()
198 void pop_front() { in pop_front()
211 void remove(T *X) { in remove()