Home
last modified time | relevance | path

Searched refs:first_ (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_list.h32 first_ = last_ = nullptr; in clear()
42 first_ = last_ = x; in push_back()
55 first_ = last_ = x; in push_front()
58 x->next = first_; in push_front()
59 first_ = x; in push_front()
66 first_ = first_->next; in pop_front()
67 if (!first_) in pop_front()
83 Item *front() { return first_; } in front()
84 const Item *front() const { return first_; } in front()
95 l->last_->next = first_; in append_front()
[all …]