Lines Matching refs:states
92 states st; /* current states */
93 states fresh; /* states for a fresh start */
94 states tmp; /* temporary */
95 states empty; /* empty set of states */
112 static states step(struct re_guts *, sopno, sopno, states, wint_t, states);
123 static void print(struct match *, const char *, states, int, FILE *);
792 states st = m->st; in walk()
793 states fresh = m->fresh; in walk()
794 states empty = m->empty; in walk()
795 states tmp = m->tmp; in walk()
905 static states
909 states bef, /* states reachable before */ in step()
911 states aft) /* states already known reachable after */ in step()
1023 print(struct match *m, const char *caption, states st, int ch, FILE *d) in print()