Home | History | Annotate | Download | only in lib

Lines Matching refs:S_N

27 /* states: S_N: normal, S_I: comparing integral part, S_F: comparing
29 #define S_N 0x0
74 /* S_N */ S_N, S_I, S_Z, S_N,
75 /* S_I */ S_N, S_I, S_I, S_I,
76 /* S_F */ S_N, S_F, S_F, S_F,
77 /* S_Z */ S_N, S_F, S_Z, S_Z
85 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
101 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));