Symbol: rebalance
include/linux/rbtree_augmented.h
229
struct rb_node *parent, *rebalance;
include/linux/rbtree_augmented.h
245
rebalance = NULL;
include/linux/rbtree_augmented.h
247
rebalance = __rb_is_black(pc) ? parent : NULL;
include/linux/rbtree_augmented.h
254
rebalance = NULL;
include/linux/rbtree_augmented.h
313
rebalance = NULL;
include/linux/rbtree_augmented.h
315
rebalance = rb_is_black(successor) ? parent : NULL;
include/linux/rbtree_augmented.h
322
return rebalance;
include/linux/rbtree_augmented.h
329
struct rb_node *rebalance = __rb_erase_augmented(node, root, augment);
include/linux/rbtree_augmented.h
330
if (rebalance)
include/linux/rbtree_augmented.h
331
__rb_erase_color(rebalance, root, augment->rotate);
lib/btree.c
616
rebalance(head, geo, key, level, node, fill - 1);
lib/rbtree.c
442
struct rb_node *rebalance;
lib/rbtree.c
443
rebalance = __rb_erase_augmented(node, root, &dummy_callbacks);
lib/rbtree.c
444
if (rebalance)
lib/rbtree.c
445
____rb_erase_color(rebalance, root, dummy_rotate);
tools/include/linux/rbtree_augmented.h
192
struct rb_node *parent, *rebalance;
tools/include/linux/rbtree_augmented.h
208
rebalance = NULL;
tools/include/linux/rbtree_augmented.h
210
rebalance = __rb_is_black(pc) ? parent : NULL;
tools/include/linux/rbtree_augmented.h
217
rebalance = NULL;
tools/include/linux/rbtree_augmented.h
277
rebalance = NULL;
tools/include/linux/rbtree_augmented.h
281
rebalance = __rb_is_black(pc2) ? parent : NULL;
tools/include/linux/rbtree_augmented.h
287
return rebalance;
tools/include/linux/rbtree_augmented.h
294
struct rb_node *rebalance = __rb_erase_augmented(node, root, augment);
tools/include/linux/rbtree_augmented.h
295
if (rebalance)
tools/include/linux/rbtree_augmented.h
296
__rb_erase_color(rebalance, root, augment->rotate);
tools/lib/rbtree.c
440
struct rb_node *rebalance;
tools/lib/rbtree.c
441
rebalance = __rb_erase_augmented(node, root, &dummy_callbacks);
tools/lib/rbtree.c
442
if (rebalance)
tools/lib/rbtree.c
443
____rb_erase_color(rebalance, root, dummy_rotate);