Searched refs:isxdigit (Results 1 - 25 of 45) sorted by relevance

12

/barrelfish-master/kernel/
H A Dstdlib.c29 isxdigit(int c) function
53 if(!isxdigit(c)) {
79 (base == 10 && isdigit((int)nptr[i])) || (base == 16 && isxdigit((int)nptr[i]));
100 (base == 10 && isdigit((int)nptr[i])) || (base == 16 && isxdigit((int)nptr[i]));
/barrelfish-master/include/cxx/
H A Dctype.h27 int isxdigit(int c);
53 #undef isxdigit macro
/barrelfish-master/include/sys/
H A Dctype.h48 #define isxdigit(c) (isdigit(c) \ macro
/barrelfish-master/lib/cxx/cxx/support/solaris/
H A Dxlocale.cpp19 return isxdigit(__c);
23 return isxdigit(__c);
/barrelfish-master/lib/acpica/source/compiler/
H A Dasluuid.c169 if (!isxdigit ((int) InString[i]))
H A Daslpredef.c619 if ((isxdigit ((int) Name[2])) &&
620 (isxdigit ((int) Name[3])))
/barrelfish-master/lib/libc/inet/
H A Dnsap_addr.c60 if (isxdigit(c)) {
65 if (isxdigit(c)) {
H A Dinet_network.c73 if (base == 16U && isxdigit((unsigned char)c)) {
H A Dinet_addr.c141 isxdigit((unsigned char)c)) {
H A Dinet_net_pton.c73 && isxdigit((unsigned char)(src[1]))) {
79 while ((ch = *src++) != '\0' && isascii(ch) && isxdigit(ch)) {
/barrelfish-master/lib/libc/locale/
H A Disctype.c179 #undef isxdigit macro
181 isxdigit(int c) function
H A DMakefile.inc39 isupper.3 iswalnum.3 iswalnum_l.3 isxdigit.3 \
80 MLINKS+=isxdigit.3 ishexnumber.3
/barrelfish-master/lib/pcre/
H A Dpcre_maketables.c122 if (isxdigit(i))p[cbit_xdigit + i/8] |= 1 << (i&7);
141 if (isxdigit(i)) x += ctype_xdigit;
/barrelfish-master/lib/lwip2/src/core/ipv6/
H A Dip6_addr.c57 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro
84 } else if (!isxdigit(*s)) {
132 } else if (isxdigit(*s)) {
/barrelfish-master/lib/lwip/src/core/ipv4/
H A Dinet.c48 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro
112 } else if (base == 16 && isxdigit(c)) {
/barrelfish-master/include/
H A Dctype.h59 int isxdigit(int);
98 #define isxdigit(c) __sbistype((c), _CTYPE_X) macro
/barrelfish-master/lib/libc/iconv/
H A Dcitrus_bcs.h59 _CITRUS_BCS_PRED(isxdigit, _citrus_bcs_isdigit(c) ||
/barrelfish-master/lib/lua/src/
H A Dlctype.h88 #define lisxdigit(c) (isxdigit(c))
/barrelfish-master/lib/acpica/source/include/
H A Dacclib.h142 #define isxdigit(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_XD)) macro
/barrelfish-master/lib/msun/src/
H A Ds_nan.c63 for (si = 0; isxdigit(s[si]); si++)
/barrelfish-master/lib/vis/
H A Dunvis.c383 if (!isxdigit(uc))
387 if (isxdigit(uc)) {
400 if (isxdigit(uc)) {
411 if (isxdigit(uc) && (isdigit(uc) || isupper(uc))) {
419 if (isxdigit(uc) && (isdigit(uc) || isupper(uc))) {
/barrelfish-master/lib/lwip2/src/core/ipv4/
H A Dip4_addr.c120 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro
188 } else if (base == 16 && isxdigit(c)) {
/barrelfish-master/lib/arranet/
H A Dip_addr.c118 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) macro
184 } else if (base == 16 && isxdigit(c)) {
/barrelfish-master/lib/acpica/source/components/utilities/
H A Dutnonansi.c452 if (isxdigit ((int) ThisDigit))
/barrelfish-master/lib/openssl-1.0.0d/crypto/asn1/
H A Df_int.c134 * Nevertheless, isxdigit() is faster.
136 if (!isxdigit(buf[j]))

Completed in 206 milliseconds

12