Searched defs:isdigit (Results 1 - 25 of 42) sorted by relevance

12

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dctype_.c76 #undef isdigit macro
107 int isdigit(c) function
/illumos-gate/usr/src/cmd/mdb/common/libstand/
H A Dctype.c22 isdigit(int c) function
50 return ((isdigit(c) || (c >= 'A' && c <= 'F') ||
64 return ((isalpha(c) || isdigit(c)) ? 1 : 0);
/illumos-gate/usr/src/common/util/
H A Dstrtolctype.h59 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
61 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9') macro
66 #define isxdigit(ch) (isdigit(ch) || ((ch) >= 'a' && (ch) <= 'f') || \
76 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
87 (isdigit(x) || ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z'))
/illumos-gate/usr/src/lib/libc/port/locale/
H A Disdigit.c70 #undef isdigit macro
/illumos-gate/usr/src/uts/common/io/ib/mgt/ibmf/
H A Dibmf_utils.c45 #define isdigit(ch) ((ch >= '0') && (ch <= '9')) macro
183 } else if (isdigit(fmt)) {
331 } else if (isdigit(fmt)) {
/illumos-gate/usr/src/uts/common/sys/
H A Dctype.h70 isdigit(char c) function
74 #pragma inline(isdigit)
/illumos-gate/usr/src/common/net/dhcp/
H A Doctet.c39 #define isdigit(c) ((c) >= '0' && c <= '9') macro
40 #define isxdigit(c) (isdigit(c) || (((c) >= 'a') && ((c) <= 'f')) || \
98 if (isdigit(*tp))
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacclib.h68 #define isdigit(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_DI)) macro
/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.h56 #define isdigit(c) ((__ctype + 1)[c] & _N) macro
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dctype.h48 extern int isdigit(/* int c */);
70 #define isdigit(c) ((_ctype_ + 1)[c] & _N) macro
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dctype.h44 #define isdigit(c) ((_ctype_+1)[c]&_N) macro
/illumos-gate/usr/src/boot/include/
H A Dctype.h52 int isdigit(int);
91 #define isdigit(c) __sbistype((c), _CTYPE_D) macro
/illumos-gate/usr/src/uts/common/io/cardbus/
H A Dcardbus_parse.h83 #define isxdigit(ch) (isdigit(ch) || ((ch) >= 'a' && (ch) <= 'f') || \
86 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9') macro
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dtparm.c56 #undef isdigit macro
57 #define isdigit(c) ((c) >= '0' && (c) <= '9') macro
288 if (isdigit(*s)) {
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dcache_a.out.c54 #define isdigit(c) (((c) >= '0') && ((c) <= '9') ? 1:0) macro
531 if (!isdigit(c = *cp) && (c == '-')) {
535 if (EMPTY(cp) || !isdigit(c))
538 while (isdigit(c = *cp) && (*cp++ != '\0')) {
H A Dexternal.c681 isdigit(int c) function
708 return ((isdigit(c) || (c >= 'A' && c <= 'F') ||
721 return ((isalpha(c) || isdigit(c)) ? 1 : 0);
/illumos-gate/usr/src/uts/common/fs/dev/
H A Dsdev_ptsops.c49 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9') macro
79 if (nm == NULL || !isdigit(*nm))
H A Dsdev_vtops.c52 #define isdigit(ch) ((ch) >= '0' && (ch) <= '9') macro
78 if (nm == NULL || !isdigit(*nm))
/illumos-gate/usr/src/uts/common/io/usb/usba/
H A Dparser.c42 #define isdigit(ch) ((ch >= '0') && (ch <= '9')) macro
158 } else if (isdigit(fmt)) {
/illumos-gate/usr/src/uts/sparc/os/
H A Discsi_boot.c52 isdigit(int ch) function
438 if (!isdigit(c))
441 if (!isdigit(c))
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_idmap.c1612 #ifndef isdigit
1613 #define isdigit(c) ((c) >= '0' && (c) <= '9') macro
1622 if (!isdigit(u8s->utf8string_val[i]))
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dnl7curi.h51 #ifndef isdigit
52 #define isdigit(c) ((c) >= '0' && (c) <= '9') macro
/illumos-gate/usr/src/common/mpi/
H A Dmpi.h67 #ifndef isdigit
68 #define isdigit(x) ((x) >= '0' && (x) <= '9') macro
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/
H A Dosdep.h37 #define isdigit(x) ((x) >= '0' && (x) <= '9') macro
/illumos-gate/usr/src/uts/common/sys/usb/clients/usbecm/
H A Dusbecm.h267 #define isdigit(c) ((c) >= '0' && c <= '9') macro

Completed in 187 milliseconds

12