Home | History | Annotate | Download | only in raidframe

Lines Matching defs:nd

750 	RF_DagNode_t *nd, *local_nq, *term_nq, *fire_nq;
773 nd = local_nq;
775 switch (nd->dagHdr->status) {
778 if (nd->numSuccedents == 0) {
781 nd->next = term_nq;
782 term_nq = nd;
786 nd->next = fire_nq;
787 fire_nq = nd;
791 if (nd->numAntecedents == 0) {
794 nd->next = term_nq;
795 term_nq = nd;
799 nd->next = fire_nq;
800 fire_nq = nd;
812 nd = term_nq;
814 nd->next = NULL;
815 (nd->dagHdr->cbFunc) (nd->dagHdr->cbArg);