Home | History | Annotate | Download | only in internal

Lines Matching refs:next_

93     next_ = this;
113 while (p->next_ != ptr) p = p->next_;
114 p->next_ = this;
115 next_ = ptr;
124 if (next_ == this) return true;
125 linked_ptr_internal const* p = next_;
126 while (p->next_ != this) p = p->next_;
127 p->next_ = next_;
132 mutable linked_ptr_internal const* next_;