Lines Matching defs:rb
50 static inline struct i915_priolist *to_priolist(struct rb_node *rb)
52 return rb_entry(rb, struct i915_priolist, node);
57 struct rb_node *rb;
67 for (rb = rb_first_cached(&execlists->queue);
68 rb;
69 rb = rb_next2(&execlists->queue.rb_root, rb)) {
70 const struct i915_priolist *p = to_priolist(rb);
138 struct rb_node **parent, *rb;
156 __USE(rb);
162 rb = NULL;
165 rb = *parent;
166 p = to_priolist(rb);
168 parent = &rb->rb_left;
170 parent = &rb->rb_right;
208 rb_link_node(&p->node, rb, parent);