HomeSort by: relevance | last modified time | path
    Searched defs:new_child (Results 1 - 6 of 6) sorted by relevancy

  /src/common/lib/libc/gen/
rbtree.c 344 struct rb_node * const new_child = old_father; local
360 new_child->rb_nodes[which] = old_child->rb_nodes[other];
361 new_father->rb_nodes[other] = new_child;
367 RB_SET_FATHER(new_child, new_father);
370 * Exchange properties between new_father and new_child. The only
371 * change is that new_child's position is now on the other side.
379 RB_COPY_PROPERTIES(new_child, &tmp);
382 RB_SWAP_PROPERTIES(new_father, new_child);
384 RB_SET_POSITION(new_child, other);
389 if (!RB_SENTINEL_P(new_child->rb_nodes[which]))
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_rb.c 240 struct archive_rb_node * const new_child = old_father;
248 new_child->rb_nodes[which] = old_child->rb_nodes[other];
249 new_father->rb_nodes[other] = new_child;
255 RB_SET_FATHER(new_child, new_father);
258 * Exchange properties between new_father and new_child. The only
259 * change is that new_child's position is now on the other side.
261 RB_SWAP_PROPERTIES(new_father, new_child);
262 RB_SET_POSITION(new_child, other);
267 if (!RB_SENTINEL_P(new_child->rb_nodes[which])) {
268 RB_SET_FATHER(new_child->rb_nodes[which], new_child)
238 struct archive_rb_node * const new_child = old_father; local
    [all...]
  /src/external/gpl2/dtc/dist/
livetree.c 147 struct node *new_child, *old_child; local
196 new_child = new_node->children;
197 new_node->children = new_child->next_sibling;
198 new_child->parent = NULL;
199 new_child->next_sibling = NULL;
201 if (new_child->deleted) {
202 delete_node_by_name(old_node, new_child->name);
203 free(new_child);
209 if (streq(old_child->name, new_child->name)) {
210 merge_nodes(old_child, new_child);
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
tree-sra.cc 3661 struct access *new_child local
3663 if (!new_child)
3667 && !totally_scalarize_subtree (new_child))
3669 last_seen_sibling = new_child;
3709 struct access *new_child local
3712 if (!new_child)
3716 && !totally_scalarize_subtree (new_child))
3718 last_seen_sibling = new_child;
tree-vect-slp.cc 5584 slp_tree new_child = get_result_with_layout (child, in_layout_i); local
5585 if (new_child != child)
5588 SLP_TREE_CHILDREN (vertex.node)[j] = new_child;
5589 new_child->refcnt += 1;
  /src/external/gpl3/gcc.old/dist/gcc/
tree-sra.cc 3355 struct access *new_child local
3357 if (!new_child)
3361 && !totally_scalarize_subtree (new_child))
3363 last_seen_sibling = new_child;
3418 struct access *new_child local
3421 if (!new_child)
3425 && !totally_scalarize_subtree (new_child))
3427 last_seen_sibling = new_child;

Completed in 39 milliseconds