Home | History | Annotate | Download | only in src

Lines Matching refs:state_info

114 } State_info;
126 static Lex_state *push_state_(State_info *, Lex_state *);
127 static Lex_state *pop_state_(State_info *, Lex_state *);
166 if (++statep == state_info.end) \
167 statep = push_state_(&state_info, statep); \
172 if (--statep == state_info.base) \
173 statep = pop_state_(&state_info, statep); \
189 State_info state_info;
199 state_info.base = states;
200 state_info.end = &state_info.base[STATE_BSIZE];
520 base = state_info.base;
1749 push_state_(State_info *si, Lex_state *old_end)
1760 pop_state_(State_info *si, Lex_state *old_end)