Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:last_

32     first_ = last_ = 0;
42 first_ = last_ = x;
46 last_->next = x;
47 last_ = x;
55 first_ = last_ = x;
68 last_ = 0;
73 Item *back() { return last_; }
82 l->last_->next = first_;
96 last_->next = l->first_;
97 last_ = l->last_;
106 CHECK_EQ(last_, 0);
111 if (i == last_) break;
114 CHECK_EQ(last_->next, 0);
140 Item *last_;