Lines Matching refs:Node
14 struct UnboundQueue<Record>::Node: public Malloced {
15 explicit Node(const Record& value)
20 Node* next;
26 first_ = new Node(Record());
39 Node* tmp = first_;
48 Node* next = reinterpret_cast<Node*>(divider_)->next;
57 Node*& next = reinterpret_cast<Node*>(last_)->next;
58 next = new Node(rec);
61 while (first_ != reinterpret_cast<Node*>(base::Acquire_Load(÷r_))) {
76 Node* next = reinterpret_cast<Node*>(divider_)->next;