Lines Matching refs:tmp1
230 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local
252 tmp1 = sibling->rb_left; in ____rb_erase_color()
253 WRITE_ONCE(parent->rb_right, tmp1); in ____rb_erase_color()
255 rb_set_parent_color(tmp1, parent, RB_BLACK); in ____rb_erase_color()
259 sibling = tmp1; in ____rb_erase_color()
261 tmp1 = sibling->rb_right; in ____rb_erase_color()
262 if (!tmp1 || rb_is_black(tmp1)) { in ____rb_erase_color()
319 tmp1 = tmp2->rb_right; in ____rb_erase_color()
320 WRITE_ONCE(sibling->rb_left, tmp1); in ____rb_erase_color()
323 if (tmp1) in ____rb_erase_color()
324 rb_set_parent_color(tmp1, sibling, in ____rb_erase_color()
327 tmp1 = sibling; in ____rb_erase_color()
345 rb_set_parent_color(tmp1, sibling, RB_BLACK); in ____rb_erase_color()
356 tmp1 = sibling->rb_right; in ____rb_erase_color()
357 WRITE_ONCE(parent->rb_left, tmp1); in ____rb_erase_color()
359 rb_set_parent_color(tmp1, parent, RB_BLACK); in ____rb_erase_color()
363 sibling = tmp1; in ____rb_erase_color()
365 tmp1 = sibling->rb_left; in ____rb_erase_color()
366 if (!tmp1 || rb_is_black(tmp1)) { in ____rb_erase_color()
383 tmp1 = tmp2->rb_left; in ____rb_erase_color()
384 WRITE_ONCE(sibling->rb_right, tmp1); in ____rb_erase_color()
387 if (tmp1) in ____rb_erase_color()
388 rb_set_parent_color(tmp1, sibling, in ____rb_erase_color()
391 tmp1 = sibling; in ____rb_erase_color()
398 rb_set_parent_color(tmp1, sibling, RB_BLACK); in ____rb_erase_color()