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

  /src/external/mit/isl/dist/
isl_schedule_node_private.h 15 * "child_pos" is an array of child positions of the same length as "ancestors",
16 * where ancestor i (i > 0) appears in child_pos[i - 1] of ancestor i - 1 and
17 * "tree" appears in child_pos[n - 1] of ancestor n - 1.
29 int *child_pos; member in struct:isl_schedule_node
35 __isl_take isl_schedule_tree_list *ancestors, int *child_pos);
isl_schedule_node.c 24 * "child_pos" may be NULL if there are no ancestors.
28 __isl_take isl_schedule_tree_list *ancestors, int *child_pos)
38 if (n > 0 && !child_pos)
48 node->child_pos = isl_alloc_array(ctx, int, n);
49 if (n && !node->child_pos)
52 node->child_pos[i] = child_pos[i];
196 node->child_pos);
237 free(node->child_pos);
268 if (node1->child_pos[i] != node2->child_pos[i]
1176 int *child_pos; local
    [all...]

Completed in 112 milliseconds