Home | History | Annotate | Download | only in regex

Lines Matching full:states

81 	states st;		/* current states */
82 states fresh; /* states for a fresh start */
83 states tmp; /* temporary */
84 states empty; /* empty set of states */
92 static states step(struct re_guts *, sopno, sopno, states, int, states);
104 static void print(struct match *, char *, states, int, FILE *);
676 states st = m->st;
677 states fresh = m->fresh;
678 states tmp = m->tmp;
760 states st = m->st;
761 states empty = m->empty;
762 states tmp = m->tmp;
835 - step - map set of states reachable before char to set reachable after
837 static states
841 states bef, /* states reachable before */
843 states aft) /* states already known reachable after */
952 - print - print a set of states
955 print(struct match *m, char *caption, states st, int ch, FILE *d)