Searched refs:isdigit (Results 1 - 25 of 26) sorted by relevance

12

/seL4-test-master/projects/musllibc/src/ctype/
H A Disdigit.c3 #undef isdigit macro
5 int isdigit(int c) function
12 return isdigit(c);
H A Disalnum.c6 return isalpha(c) || isdigit(c);
H A Disxdigit.c6 return isdigit(c) || ((unsigned)c|32)-'a' < 6;
/seL4-test-master/projects/musllibc/src/string/
H A Dstrverscmp.c17 if (!isdigit(c)) dp=i+1, z=1;
24 for (j=i; isdigit(l[j]); j++)
25 if (!isdigit(r[j])) return 1;
26 if (isdigit(r[j])) return -1;
27 } else if (z && dp<i && (isdigit(l[i]) || isdigit(r[i]))) {
/seL4-test-master/projects/musllibc/src/stdlib/
H A Datoi.c13 while (isdigit(*s))
H A Datol.c14 while (isdigit(*s))
H A Datoll.c14 while (isdigit(*s))
/seL4-test-master/projects/musllibc/include/
H A Dctype.h14 int isdigit(int);
32 #define isdigit(a) (0 ? isdigit(a) : ((unsigned)(a)-'0') < 10) macro
/seL4-test-master/projects/musllibc/src/locale/
H A Dstrfmon.c52 for (fw=0; isdigit(*fmt); fmt++)
56 if (*fmt=='#') for (lp=0, fmt++; isdigit(*fmt); fmt++)
58 if (*fmt=='.') for (rp=0, fmt++; isdigit(*fmt); fmt++)
H A Dpleval.c44 if (isdigit(*s)) {
/seL4-test-master/projects/util_libs/libethdrivers/src/plat/imx6/
H A Dunimplemented.c45 while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp-'0' : (islower(*cp)
/seL4-test-master/projects/util_libs/libethdrivers/src/plat/zynq7000/
H A Dunimplemented.c45 while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp-'0' : (islower(*cp)
/seL4-test-master/projects/util_libs/libethdrivers/src/plat/tx2/
H A Dunimplemented.c48 while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp - '0' : (islower(*cp)
/seL4-test-master/projects/musllibc/src/time/
H A Dstrptime.c25 if (isdigit(*f)) {
160 if (!isdigit(*s)) return 0;
162 for (i=1; i<=min+range && isdigit(*s); i*=10)
175 if (!isdigit(*s)) return 0;
176 for (*dest=i=0; i<w && isdigit(*s); i++)
/seL4-test-master/projects/musllibc/src/network/
H A Dresolvconf.c42 if (p && isdigit(p[6])) {
48 if (p && isdigit(p[6])) {
54 if (p && (isdigit(p[8]) || p[8]=='.')) {
H A Dinet_aton.c17 if (z==s || (*z && *z != '.') || !isdigit(*s))
H A Dlookup_ipliteral.c44 if (isdigit(*++p)) scopeid = strtoull(p, &z, 10);
H A Dinet_pton.c23 for (v=j=0; j<3 && isdigit(s[j]); j++)
/seL4-test-master/kernel/src/machine/
H A Dio.c58 static inline bool_t isdigit(char c) function
260 for (i = 0; isdigit(**s); (*s)++) {
312 if (isdigit(s[1]) && s[2] == '$') {
328 if (isdigit(s[1]) && s[2] == '$') {
349 if (isdigit(s[2]) && s[3] == '$') {
/seL4-test-master/projects/musllibc/src/stdio/
H A Dvfscanf.c107 } else if (isdigit(*p) && p[1]=='$') {
113 for (width=0; isdigit(*p); p++) {
H A Dvfprintf.c448 for (i=0; isdigit(**s); (*s)++) {
489 if (isdigit(s[1]) && s[2]=='$') {
504 if (isdigit(s[1]) && s[2]=='$') {
518 if (isdigit(s[2]) && s[3]=='$') {
H A Dvfwprintf.c232 if (isdigit(s[2]) && s[3]=='$') {
/seL4-test-master/projects/musllibc/src/thread/
H A Dsynccall.c107 if (!isdigit(de->d_name[0])) continue;
/seL4-test-master/projects/musllibc/src/crypt/
H A Dcrypt_sha256.c224 if (!isdigit(*salt))
H A Dcrypt_sha512.c246 if (!isdigit(*salt))

Completed in 246 milliseconds

12