HomeSort by: relevance | last modified time | path
    Searched defs:first_ (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_list.h 33 first_ = last_ = nullptr;
43 first_ = last_ = x;
56 first_ = last_ = x;
59 x->next = first_;
60 first_ = x;
67 first_ = first_->next;
68 if (!first_)
84 Item *front() { return first_; }
85 const Item *front() const { return first_; }
161 Item *first_; member in struct:__sanitizer::IntrusiveList
    [all...]
sanitizer_list.h 33 first_ = last_ = nullptr;
43 first_ = last_ = x;
56 first_ = last_ = x;
59 x->next = first_;
60 first_ = x;
67 first_ = first_->next;
68 if (!first_)
84 Item *front() { return first_; }
85 const Item *front() const { return first_; }
161 Item *first_; member in struct:__sanitizer::IntrusiveList
    [all...]

Completed in 202 milliseconds