Searched defs:isalpha (Results 1 - 21 of 21) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dctype_.c73 #undef isalpha macro
89 int isalpha(c) function
/illumos-gate/usr/src/cmd/mdb/common/libstand/
H A Dctype.c55 isalpha(int c) function
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))
60 #define isalpha(ch) (isupper(ch) || islower(ch)) macro
/illumos-gate/usr/src/lib/libc/port/locale/
H A Disdigit.c72 #undef isalpha macro
/illumos-gate/usr/src/uts/common/sys/
H A Dctype.h98 isalpha(char c) function
102 #pragma inline(isalpha)
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacclib.h74 #define isalpha(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP)) macro
/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.h53 #define isalpha(c) ((__ctype + 1)[c] & (_U | _L)) macro
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dctype.h43 extern int isalpha(/* int c */);
65 #define isalpha(c) ((_ctype_ + 1)[c] & (_U | _L)) macro
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dctype.h41 #define isalpha(c) ((_ctype_+1)[c]&(_U|_L)) macro
/illumos-gate/usr/src/boot/include/
H A Dctype.h50 int isalpha(int);
89 #define isalpha(c) __sbistype((c), _CTYPE_A) macro
/illumos-gate/usr/src/uts/common/io/cardbus/
H A Dcardbus_parse.h76 #undef isalpha macro
81 #define isalpha(ch) (((ch) >= 'a' && (ch) <= 'z') || \ macro
/illumos-gate/usr/src/uts/common/io/ib/clients/rds/
H A Drdsib_sc.c88 #define isalpha(ch) (((ch) >= 'a' && (ch) <= 'z') || \ macro
105 while ((i >= 0) && (!isalpha(name[i]))) i--;
/illumos-gate/usr/src/uts/common/io/ib/clients/rdsv3/
H A Drdsv3_sc.c84 #define isalpha(ch) (((ch) >= 'a' && (ch) <= 'z') || \ macro
101 while ((i >= 0) && (!isalpha(name[i]))) i--;
/illumos-gate/usr/src/lib/libshell/common/include/
H A Dlexstates.h88 # undef isalpha macro
89 # define isalpha(x) iswalpha(x) macro
110 # define isaname(c) ((c)>0xff?isalpha(c): sh_lexstates[ST_NAME][(c)]==0)
111 # define isaletter(c) ((c)>0xff?isalpha(c): sh_lexstates[ST_DOL][(c)]==S_ALP && (c)!='.')
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dnl7curi.h55 #ifndef isalpha
56 #define isalpha(c) (((c) >= 'A' && (c) <= 'Z') || ((c) >= 'a' && (c) <= 'z')) macro
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dexternal.c713 isalpha(int c) function
721 return ((isalpha(c) || isdigit(c)) ? 1 : 0);
/illumos-gate/usr/src/common/mpi/
H A Dmpi.h76 #ifndef isalpha
77 #define isalpha(x) (isupper(x) || islower(x)) macro
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstand.h226 static __inline int isalpha(int c) function
233 return isalpha(c) || isdigit(c);
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_proxy.h134 #ifndef isalpha
135 #define isalpha(x) (isupper(x) || islower(x)) macro
/illumos-gate/usr/src/uts/common/inet/nca/
H A Dnca.h1665 #ifndef isalpha
1666 #define isalpha(c) (((c) >= 'A' && (c) <= 'Z') || ((c) >= 'a' && (c) <= 'z')) macro
/illumos-gate/usr/src/man/man3c/
H A DMakefile881 isalpha.3c \
1588 isalpha.3c := LINKSRC = ctype.3c

Completed in 659 milliseconds