Lines Matching refs:tmp1
231 struct rb_node *node = NULL, *sibling, *tmp1, *tmp2; in ____rb_erase_color() local
253 tmp1 = sibling->rb_left; in ____rb_erase_color()
254 WRITE_ONCE(parent->rb_right, tmp1); in ____rb_erase_color()
256 rb_set_parent_color(tmp1, parent, RB_BLACK); in ____rb_erase_color()
260 sibling = tmp1; in ____rb_erase_color()
262 tmp1 = sibling->rb_right; in ____rb_erase_color()
263 if (!tmp1 || rb_is_black(tmp1)) { in ____rb_erase_color()
305 tmp1 = tmp2->rb_right; in ____rb_erase_color()
306 WRITE_ONCE(sibling->rb_left, tmp1); in ____rb_erase_color()
309 if (tmp1) in ____rb_erase_color()
310 rb_set_parent_color(tmp1, sibling, in ____rb_erase_color()
313 tmp1 = sibling; in ____rb_erase_color()
331 rb_set_parent_color(tmp1, sibling, RB_BLACK); in ____rb_erase_color()
342 tmp1 = sibling->rb_right; in ____rb_erase_color()
343 WRITE_ONCE(parent->rb_left, tmp1); in ____rb_erase_color()
345 rb_set_parent_color(tmp1, parent, RB_BLACK); in ____rb_erase_color()
349 sibling = tmp1; in ____rb_erase_color()
351 tmp1 = sibling->rb_left; in ____rb_erase_color()
352 if (!tmp1 || rb_is_black(tmp1)) { in ____rb_erase_color()
369 tmp1 = tmp2->rb_left; in ____rb_erase_color()
370 WRITE_ONCE(sibling->rb_right, tmp1); in ____rb_erase_color()
373 if (tmp1) in ____rb_erase_color()
374 rb_set_parent_color(tmp1, sibling, in ____rb_erase_color()
377 tmp1 = sibling; in ____rb_erase_color()
384 rb_set_parent_color(tmp1, sibling, RB_BLACK); in ____rb_erase_color()