Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:last_

30     first_ = last_ = 0;
40 first_ = last_ = x;
44 last_->next = x;
45 last_ = x;
53 first_ = last_ = x;
66 last_ = 0;
71 Item *back() { return last_; }
80 l->last_->next = first_;
94 last_->next = l->first_;
95 last_ = l->last_;
104 CHECK_EQ(last_, 0);
109 if (i == last_) break;
112 CHECK_EQ(last_->next, 0);
119 Item *last_;