Searched refs:ISDIGIT (Results 1 - 6 of 6) sorted by relevance

/external/bison/lib/
H A Dstrverscmp.c39 /* ISDIGIT differs from isdigit, as follows:
43 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
46 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) macro
101 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));
108 state |= (c1 == '0') + (ISDIGIT (c1) != 0);
111 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))];
119 while (ISDIGIT (*p1++))
120 if (!ISDIGIT (*p2++))
123 return ISDIGIT (*p2) ? -1 : diff;
/external/icu4c/io/
H A Duprntf_p.c1026 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
1070 if(ISDIGIT(*alias)) {
1073 if(ISDIGIT(*alias)) {
1076 while(ISDIGIT(*alias)) {
1134 if(ISDIGIT(*alias)) {
1137 while(ISDIGIT(*alias)) {
1146 while (ISMOD(*alias) || ISFLAG(*alias) || ISDIGIT(*alias) ||
1272 if(ISDIGIT(*alias)) {
1278 if(ISDIGIT(*alias)) {
1281 while(ISDIGIT(*alia
[all...]
H A Duscanf_p.c58 #define ISDIGIT(s) (s) == DIGIT_ZERO || \ macro
138 if(ISDIGIT(*s)) {
144 if(ISDIGIT(*s)) {
147 while(ISDIGIT(*s)) {
189 if(ISDIGIT(*s)){
192 while(ISDIGIT(*s)) {
/external/valgrind/main/coregrind/m_demangle/
H A Dcplus-dem.c513 if (! ISDIGIT ((unsigned char)**type))
516 while (ISDIGIT ((unsigned char)**type))
527 while (ISDIGIT ((unsigned char) **type))
555 if (!ISDIGIT ((unsigned char)**mangled))
964 if (ISDIGIT ((unsigned char) mangled[len0 - 1])) {
965 for (i = len0 - 2; i >= 0 && ISDIGIT ((unsigned char) mangled[i]); i -= 1)
1474 while (**mangled && ISDIGIT ((unsigned char)**mangled))
1810 while (ISDIGIT ((unsigned char)**mangled))
1819 while (ISDIGIT ((unsigned char)**mangled))
1829 while (ISDIGIT ((unsigne
[all...]
H A Dsafe-ctype.h93 #define ISDIGIT(c) _sch_test(c, _sch_isdigit) macro
/external/chromium/third_party/libevent/
H A Devdns.c383 #define ISDIGIT(c) isdigit((int)(unsigned char)(c)) macro
2820 while (ISDIGIT(*ips) || *ips == '.' || *ips == ':')

Completed in 3282 milliseconds