Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/sgs/tsort/common/
H A Dtsort.c51 #define VISITED 2 /* used only in findloop() */ macro
223 if (j->live == VISITED) in findloop()
242 if (i->live == VISITED) in mark()
244 i->live = VISITED; in mark()
/illumos-gate/usr/src/tools/smatch/src/
H A Ddominate.c67 #define VISITED 0x1 macro
93 if (y->generation & VISITED) in visit()
/illumos-gate/usr/src/cmd/whodo/
H A Dwhodo.c100 #define VISITED 'v' /* marked node as visited */ macro
578 if (up->p_state == VISITED) /* we already been here */ in showproc()
591 up->p_state = VISITED; in showproc()
652 if (up->p_state == VISITED) in calctotals()
654 up->p_state = VISITED; in calctotals()
/illumos-gate/usr/src/uts/common/sys/
H A Dstrsubr.h698 #define VISITED 1 macro
1077 #define MUX_VISIT(X) ((X)->mn_flags |= VISITED)
1078 #define MUX_CLEAR(X) ((X)->mn_flags &= (~VISITED)); \
1080 #define MUX_DIDVISIT(X) ((X)->mn_flags & VISITED)