Lines Matching refs:new
28 void (*copy)(struct rb_node *old, struct rb_node *new);
29 void (*rotate)(struct rb_node *old, struct rb_node *new);
33 void (*augment_rotate)(struct rb_node *old, struct rb_node *new));
59 rbstruct *new = rb_entry(rb_new, rbstruct, rbfield); \
60 new->rbaugmented = old->rbaugmented; \
66 rbstruct *new = rb_entry(rb_new, rbstruct, rbfield); \
67 new->rbaugmented = old->rbaugmented; \
99 __rb_change_child(struct rb_node *old, struct rb_node *new, in __rb_change_child() argument
104 parent->rb_left = new; in __rb_change_child()
106 parent->rb_right = new; in __rb_change_child()
108 root->rb_node = new; in __rb_change_child()
112 void (*augment_rotate)(struct rb_node *old, struct rb_node *new));