/external/bison/lib/ |
strverscmp.c | 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)) [all...] |
/external/blktrace/ |
strverscmp.c | 72 /* states: S_N: normal, S_I: comparing integral part, S_F: comparing
74 #define S_N 0x0
102 /* S_N */ S_N, S_I, S_Z, S_N,
103 /* S_I */ S_N, S_I, S_I, S_I,
104 /* S_F */ S_N, S_F, S_F, S_F,
105 /* S_Z */ S_N, S_F, S_Z, S_Z
113 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP,
129 state = S_N | ((c1 == '0') + (isdigit (c1) != 0)); [all...] |
/ndk/sources/host-tools/sed-4.2.1/lib/ |
strverscmp.c | 29 /* states: S_N: normal, S_I: comparing integral part, S_F: comparing 31 #define S_N 0x0 76 /* S_N */ S_N, S_I, S_Z, S_N, 77 /* S_I */ S_N, S_I, S_I, S_I, 78 /* S_F */ S_N, S_F, S_F, S_F, 79 /* S_Z */ S_N, S_F, S_Z, S_Z 87 /* S_N */ CMP, CMP, CMP, CMP, CMP, LEN, CMP, CMP, 103 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0)) [all...] |