Home | History | Annotate | Download | only in processor

Lines Matching defs:next_

69     next_ = this;
75 while (p->next_ != ptr) p = p->next_;
76 p->next_ = this;
77 next_ = ptr;
83 if (next_ == this) return true;
84 linked_ptr_internal const* p = next_;
85 while (p->next_ != this) p = p->next_;
86 p->next_ = next_;
91 mutable linked_ptr_internal const* next_;