Lines Matching refs:T
20 template <class T>
26 T* next_;
27 T* prev_;
35 template <class T>
45 inline void Push(T* const t) { in Push()
68 inline void Unlink(T* const t) { in Unlink()
74 inline T* Pop() { in Pop()
81 T* t = head_; in Pop()
99 inline void Touch(T* const t) { in Touch()
113 void UnlinkImpl(T* const t) { in UnlinkImpl()
140 inline void PushBack(T* const t) { in PushBack()
145 inline void PushBackImpl(T* const t) { in PushBackImpl()
168 T* head_ = nullptr; // front (cold)
169 T* tail_ = nullptr; // back (hot)