Home | History | Annotate | Download | only in dist

Lines Matching defs:anchored

44  * By default, the single node tree does not have any anchored nodes.
45 * The caller is responsible for updating the anchored field if needed.
63 tree->anchored = 0;
142 dup->anchored = tree->anchored;
248 tree->anchored = isl_schedule_band_is_anchored(band);
258 * the tree is anchored.
275 tree->anchored = 1;
338 * the tree is anchored.
355 tree->anchored = 1;
389 * the tree is anchored.
406 tree->anchored = 1;
445 return tree ? isl_bool_ok(tree->anchored) : isl_bool_error;
450 * Band nodes may be anchored depending on the associated AST build options.
451 * Context, extension and guard nodes are always anchored.
481 /* Update the anchored field of "tree" based on whether the root node
482 * itself in anchored and the anchored fields of the children.
492 int anchored;
494 anchored = isl_schedule_tree_is_anchored(tree);
496 if (anchored < 0 || n < 0)
499 for (i = 0; !anchored && i < n; ++i) {
505 anchored = child->anchored;
509 if (anchored == tree->anchored)
514 tree->anchored = anchored;
1274 * Updated the anchored field if the anchoredness of the root node itself