Lines Matching refs:rb
78 struct rb_node *rb, **p; in vma_create() local
143 rb = NULL; in vma_create()
148 rb = *p; in vma_create()
149 pos = rb_entry(rb, struct i915_vma, obj_node); in vma_create()
151 p = &rb->rb_right; in vma_create()
153 p = &rb->rb_left; in vma_create()
155 rb_link_node(&vma->obj_node, rb, p); in vma_create()
171 struct rb_node *rb; in vma_lookup() local
173 rb = obj->vma_tree.rb_node; in vma_lookup()
174 while (rb) { in vma_lookup()
175 struct i915_vma *vma = rb_entry(rb, struct i915_vma, obj_node); in vma_lookup()
183 rb = rb->rb_right; in vma_lookup()
185 rb = rb->rb_left; in vma_lookup()