Lines Matching full:state
68 int state;
75 /* state x d 0 - */
84 /* state x/x x/d x/0 x/- d/x d/d d/0 d/-
103 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));
107 state = next_state[state];
110 state |= (c1 == '0') + (ISDIGIT (c1) != 0);
113 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))];
115 switch (state)
128 return state;