Lines Matching refs:state
66 int state;
73 /* state x d 0 - */
82 /* state x/x x/d x/0 x/- d/x d/d d/0 d/-
101 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));
105 state = next_state[state];
108 state |= (c1 == '0') + (ISDIGIT (c1) != 0);
111 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))];
113 switch (state)
126 return state;