Home | History | Annotate | Download | only in src

Lines Matching refs:state_info

89 } State_info;
101 static Lex_state *push_state_i(State_info *, Lex_state *);
102 static Lex_state *pop_state_i(State_info *, Lex_state *);
150 if (++statep == state_info.end) \
151 statep = push_state_i(&state_info, statep); \
156 if (--statep == state_info.base) \
157 statep = pop_state_i(&state_info, statep); \
194 State_info state_info;
205 state_info.base = states;
206 state_info.end = &state_info.base[STATE_BSIZE];
540 base = state_info.base;
1779 push_state_i(State_info *si, Lex_state *old_end)
1790 pop_state_i(State_info *si, Lex_state *old_end)