Searched refs:ilist_node_base (Results 1 – 3 of 3) sorted by relevance
19 template <bool EnableSentinelTracking> class ilist_node_base; variable21 template <> class ilist_node_base<false> {22 ilist_node_base *Prev = nullptr;23 ilist_node_base *Next = nullptr;26 void setPrev(ilist_node_base *Prev) { this->Prev = Prev; } in setPrev()28 ilist_node_base *getPrev() const { return Prev; } in getPrev()29 ilist_node_base *getNext() const { return Next; } in getNext()35 template <> class ilist_node_base<true> {36 PointerIntPair<ilist_node_base *, 1> PrevAndSentinel;37 ilist_node_base *Next = nullptr;[all …]
18 template <bool EnableSentinelTracking> class ilist_node_base; variable117 typedef ilist_node_base<enable_sentinel_tracking> node_base_type;
20 using node_base_type = ilist_node_base<EnableSentinelTracking>;