Lines Matching refs:new
43 void (*copy)(struct rb_node *old, struct rb_node *new);
44 void (*rotate)(struct rb_node *old, struct rb_node *new);
48 void (*augment_rotate)(struct rb_node *old, struct rb_node *new));
84 rbstruct *new = rb_entry(rb_new, rbstruct, rbfield); \
85 new->rbaugmented = old->rbaugmented; \
91 rbstruct *new = rb_entry(rb_new, rbstruct, rbfield); \
92 new->rbaugmented = old->rbaugmented; \
124 __rb_change_child(struct rb_node *old, struct rb_node *new, in __rb_change_child() argument
129 parent->rb_left = new; in __rb_change_child()
131 parent->rb_right = new; in __rb_change_child()
133 root->rb_node = new; in __rb_change_child()
137 void (*augment_rotate)(struct rb_node *old, struct rb_node *new));