Lines Matching refs:state
94 int state;
101 /* state x d 0 - */
110 /* state x/x x/d x/0 x/- d/x d/d d/0 d/-
129 state = S_N | ((c1 == '0') + (isdigit (c1) != 0));
133 state = next_state[state];
136 state |= (c1 == '0') + (isdigit (c1) != 0);
139 state = result_type[state << 2 | (((c2 == '0') + (isdigit (c2) != 0)))];
141 switch (state)
154 return state;