Home | History | Annotate | Download | only in memory

Lines Matching refs:next_

53     next_ = this;
58 next_ = ptr->next_;
59 ptr->next_ = this;
65 if (next_ == this) return true;
66 linked_ptr_internal const* p = next_;
67 while (p->next_ != this) p = p->next_;
68 p->next_ = next_;
73 mutable linked_ptr_internal const* next_;