Lines Matching defs:new
1015 struct rb_node **new = &(root->rb_root.rb_node), *parent = NULL;
1018 while (*new) {
1022 this = container_of(*new, struct work_atoms, node);
1023 parent = *new;
1028 new = &((*new)->rb_left);
1030 new = &((*new)->rb_right);
1035 rb_link_node(&data->node, parent, new);
2326 /* allocate a new thread struct if needed */
3153 struct rb_node **new = &(root->rb_root.rb_node), *parent = NULL;
3158 while (*new) {
3161 this = container_of(*new, struct work_atoms, node);
3162 parent = *new;
3167 new = &((*new)->rb_left);
3169 new = &((*new)->rb_right);
3188 rb_link_node(&data->node, parent, new);