Lines Matching defs:nodes
408 * nNodes nodes at level 2, an unblock-recon node at level 3, and a
410 * and unblock nodes are not touched, nor are the pda fields in the
411 * second-level nodes, so they must be filled in later.
426 RF_DagNode_t *nodes, *termNode, *blockNode, *unblockNode, *tmpNode;
443 /* create the nodes, the block & unblock nodes, and the terminator
448 tmpNode->list_next = dag_h->nodes;
449 dag_h->nodes = tmpNode;
451 nodes = dag_h->nodes;
454 blockNode->list_next = dag_h->nodes;
455 dag_h->nodes = blockNode;
458 unblockNode->list_next = dag_h->nodes;
459 dag_h->nodes = unblockNode;
462 termNode->list_next = dag_h->nodes;
463 dag_h->nodes = termNode;
469 tmpNode = nodes;