Home | History | Annotate | Download | only in internal

Lines Matching defs:next_

93     next_ = this;
113 while (p->next_ != ptr) {
114 assert(p->next_ != this &&
117 p = p->next_;
119 p->next_ = this;
120 next_ = ptr;
129 if (next_ == this) return true;
130 linked_ptr_internal const* p = next_;
131 while (p->next_ != this) {
132 assert(p->next_ != next_ &&
135 p = p->next_;
137 p->next_ = next_;
142 mutable linked_ptr_internal const* next_;