Lines Matching defs:State
111 typedef struct State {
112 struct State *tab[256];
116 } State;
145 State *states; /* Array of states */
146 State istate; /* Initial state */
250 static State *startstate(re_re *r);
251 static State *stateof(re_re *r, Positionset *ps);
252 static State *nextstate(re_re *r, State *s, int a);
253 static State *addstate(re_re *r, Positionset *ps, int cnt);
259 static void followstate(re_re *r, State *s, int a, Positionset *fpos);
490 State *s, *t;
638 static State *
643 State *s;
675 static State *
676 nextstate(re_re *r, State *s, int a)
678 State *news;
707 followstate(re_re *r, State *s, int a, Positionset *fpos)
840 r->states = (State *)egmalloc(r->statelim * sizeof (State));
862 static State *
881 static State *
884 State *s;