Lines Matching refs:new
40 void (*copy)(struct rb_node *old, struct rb_node *new);
41 void (*rotate)(struct rb_node *old, struct rb_node *new);
45 void (*augment_rotate)(struct rb_node *old, struct rb_node *new));
81 rbstruct *new = rb_entry(rb_new, rbstruct, rbfield); \
82 new->rbaugmented = old->rbaugmented; \
88 rbstruct *new = rb_entry(rb_new, rbstruct, rbfield); \
89 new->rbaugmented = old->rbaugmented; \
121 __rb_change_child(struct rb_node *old, struct rb_node *new, in __rb_change_child() argument
126 parent->rb_left = new; in __rb_change_child()
128 parent->rb_right = new; in __rb_change_child()
130 root->rb_node = new; in __rb_change_child()
134 void (*augment_rotate)(struct rb_node *old, struct rb_node *new));