Lines Matching refs:tmp1
246 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local
268 tmp1 = sibling->rb_left; in ____rb_erase_color()
269 WRITE_ONCE(parent->rb_right, tmp1); in ____rb_erase_color()
271 rb_set_parent_color(tmp1, parent, RB_BLACK); in ____rb_erase_color()
275 sibling = tmp1; in ____rb_erase_color()
277 tmp1 = sibling->rb_right; in ____rb_erase_color()
278 if (!tmp1 || rb_is_black(tmp1)) { in ____rb_erase_color()
335 tmp1 = tmp2->rb_right; in ____rb_erase_color()
336 WRITE_ONCE(sibling->rb_left, tmp1); in ____rb_erase_color()
339 if (tmp1) in ____rb_erase_color()
340 rb_set_parent_color(tmp1, sibling, in ____rb_erase_color()
343 tmp1 = sibling; in ____rb_erase_color()
361 rb_set_parent_color(tmp1, sibling, RB_BLACK); in ____rb_erase_color()
372 tmp1 = sibling->rb_right; in ____rb_erase_color()
373 WRITE_ONCE(parent->rb_left, tmp1); in ____rb_erase_color()
375 rb_set_parent_color(tmp1, parent, RB_BLACK); in ____rb_erase_color()
379 sibling = tmp1; in ____rb_erase_color()
381 tmp1 = sibling->rb_left; in ____rb_erase_color()
382 if (!tmp1 || rb_is_black(tmp1)) { in ____rb_erase_color()
399 tmp1 = tmp2->rb_left; in ____rb_erase_color()
400 WRITE_ONCE(sibling->rb_right, tmp1); in ____rb_erase_color()
403 if (tmp1) in ____rb_erase_color()
404 rb_set_parent_color(tmp1, sibling, in ____rb_erase_color()
407 tmp1 = sibling; in ____rb_erase_color()
414 rb_set_parent_color(tmp1, sibling, RB_BLACK); in ____rb_erase_color()