Lines Matching refs:root
1341 // Make sure root nodes are scheduled in their respective blocks.
1406 // Run the schedule early algorithm on a set of fixed root nodes.
1408 for (Node* const root : *roots) {
1409 queue_.push(root);
1452 // No need to propagate to fixed node, it's guaranteed to be a root.
1523 // Run the schedule late algorithm on a set of fixed root nodes.
1525 for (Node* const root : *roots) {
1526 ProcessQueue(root);
1531 void ProcessQueue(Node* root) {
1533 for (Node* node : root->inputs()) {