Home
last modified time | relevance | path

Searched refs:VISITED (Results 1 – 4 of 4) sorted by relevance

/titanic_41/usr/src/cmd/sgs/tsort/common/
H A Dtsort.c53 #define VISITED 2 /* used only in findloop() */ macro
225 if (j->live == VISITED) in findloop()
244 if (i->live == VISITED) in mark()
246 i->live = VISITED; in mark()
/titanic_41/usr/src/cmd/whodo/
H A Dwhodo.c96 #define VISITED 'v' /* marked node as visited */ macro
514 if (up->p_state == VISITED) /* we already been here */ in showproc()
527 up->p_state = VISITED; in showproc()
586 if (up->p_state == VISITED) in calctotals()
588 up->p_state = VISITED; in calctotals()
/titanic_41/usr/src/cmd/w/
H A Dw.c97 #define VISITED 'v' /* marked node as visited */ macro
568 if (up->p_state == VISITED) in calctotals()
570 up->p_state = VISITED; in calctotals()
/titanic_41/usr/src/uts/common/sys/
H A Dstrsubr.h680 #define VISITED 1 macro
1059 #define MUX_VISIT(X) ((X)->mn_flags |= VISITED)
1060 #define MUX_CLEAR(X) ((X)->mn_flags &= (~VISITED)); \
1062 #define MUX_DIDVISIT(X) ((X)->mn_flags & VISITED)