Lines Matching refs:gparent
169 struct rb_entry *parent, *gparent, *tmp; in rbe_insert_color() local
173 gparent = RBE_PARENT(parent); in rbe_insert_color()
175 if (parent == RBE_LEFT(gparent)) { in rbe_insert_color()
176 tmp = RBE_RIGHT(gparent); in rbe_insert_color()
179 rbe_set_blackred(parent, gparent); in rbe_insert_color()
180 rbe = gparent; in rbe_insert_color()
191 rbe_set_blackred(parent, gparent); in rbe_insert_color()
192 rbe_rotate_right(t, rbt, gparent); in rbe_insert_color()
194 tmp = RBE_LEFT(gparent); in rbe_insert_color()
197 rbe_set_blackred(parent, gparent); in rbe_insert_color()
198 rbe = gparent; in rbe_insert_color()
209 rbe_set_blackred(parent, gparent); in rbe_insert_color()
210 rbe_rotate_left(t, rbt, gparent); in rbe_insert_color()