Searched defs:islower (Results 1 - 15 of 15) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dctype_.c75 #undef islower macro
101 int islower(c) function
/illumos-gate/usr/src/cmd/mdb/common/libstand/
H A Dctype.c35 islower(int c) function
57 return ((isupper(c) || islower(c)) ? 1 : 0);
/illumos-gate/usr/src/common/util/
H A Dstrtolctype.h60 #define isalpha(ch) (isupper(ch) || islower(ch))
62 #define islower(ch) ((ch) >= 'a' && (ch) <= 'z') macro
76 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/illumos-gate/usr/src/lib/libc/port/locale/
H A Disdigit.c69 #undef islower macro
/illumos-gate/usr/src/uts/common/sys/
H A Dctype.h84 islower(char c) function
88 #pragma inline(islower)
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Dacclib.h72 #define islower(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO)) macro
/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.h55 #define islower(c) ((__ctype + 1)[c] & _L) macro
/illumos-gate/usr/src/lib/libbc/inc/5include/
H A Dctype.h50 extern int islower(/* int c */);
72 #define islower(c) ((_ctype_ + 1)[c] & _L) macro
/illumos-gate/usr/src/lib/libbc/inc/include/
H A Dctype.h43 #define islower(c) ((_ctype_+1)[c]&_L) macro
/illumos-gate/usr/src/boot/include/
H A Dctype.h54 int islower(int);
93 #define islower(c) __sbistype((c), _CTYPE_L) macro
/illumos-gate/usr/src/cmd/sgs/rtld/common/
H A Dexternal.c693 islower(int c) function
715 return ((isupper(c) || islower(c)) ? 1 : 0);
/illumos-gate/usr/src/common/mpi/
H A Dmpi.h73 #ifndef islower
74 #define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro
77 #define isalpha(x) (isupper(x) || islower(x))
80 #define toupper(x) (islower(x) ? (x) - 'a' + 'A' : (x))
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstand.h206 static __inline int islower(int c) function
228 return isupper(c) || islower(c);
238 return islower(c) ? c - 'a' + 'A' : c;
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_proxy.h131 #ifndef islower
132 #define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro
135 #define isalpha(x) (isupper(x) || islower(x))
/illumos-gate/usr/src/man/man3c/
H A DMakefile894 islower.3c \
1599 islower.3c := LINKSRC = ctype.3c

Completed in 954 milliseconds