Home | History | Annotate | Download | only in profiler

Lines Matching refs:Node

14 struct UnboundQueue<Record>::Node: public Malloced {
15 explicit Node(const Record& value) : value(value), next(nullptr) {}
18 Node* next;
24 first_ = new Node(Record());
37 Node* tmp = first_;
46 Node* next = reinterpret_cast<Node*>(divider_)->next;
55 Node*& next = reinterpret_cast<Node*>(last_)->next;
56 next = new Node(rec);
59 while (first_ != reinterpret_cast<Node*>(base::Acquire_Load(&divider_))) {
74 Node* next = reinterpret_cast<Node*>(divider_)->next;