Searched refs:islower (Results 1 - 25 of 120) sorted by relevance

12345

/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dmapfile_skel58 islower;
/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/cmd/mdb/common/libstand/
H A Dctype.c35 islower(int c) function
57 return ((isupper(c) || islower(c)) ? 1 : 0);
/illumos-gate/usr/src/lib/libast/common/tm/
H A Dtmword.c56 if (!isalpha(c) || c != *t && (islower(c) ? toupper(c) : tolower(c)) != *t)
76 while (isalpha(c = *s++) && (c == *t || (islower(c) ? toupper(c) : tolower(c)) == *t)) t++;
/illumos-gate/usr/src/boot/sys/boot/common/
H A Dinterp_backslash.c24 #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/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/uts/common/sys/
H A Dctype.h84 islower(char c) function
88 #pragma inline(islower)
/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregsub.c85 if (islower(c))
95 else if (islower(c))
144 if (islower(c))
218 if (islower(c))
228 else if (islower(c))
/illumos-gate/usr/src/lib/libpkg/common/
H A Dmappath.c41 #define mode(flag, pt) (!flag || ((flag == 1) && islower(pt[1])) || \
118 islower(pt[1])) {
227 islower(varname[1]))
/illumos-gate/usr/src/lib/libsocket/inet/
H A Dinet_network.c78 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dstrtol.c30 islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
/illumos-gate/usr/src/lib/libbc/libc/inet/
H A Dinet_network.c64 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
H A Dinet_addr.c71 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
/illumos-gate/usr/src/head/iso/
H A Dctype_iso.h96 extern int islower(int);
/illumos-gate/usr/src/cmd/oamuser/lib/
H A Dvgname.c61 if (!(islower(c) || isdigit(c)))
H A Dvprojname.c60 if (!(islower(c) || isdigit(c)))
H A Dvlogin.c71 if (islower(c))
/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/lib/libresolv2/common/inet/
H A Dinet_network.c78 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
H A Dnsap_addr.c57 if (islower(c))
/illumos-gate/usr/src/lib/libc/port/locale/
H A Disdigit.c69 #undef islower macro
/illumos-gate/usr/src/cmd/ypcmd/revnetgroup/
H A Dtable.c48 #define TOLOWER(c) (islower(c) ? c : \
/illumos-gate/usr/src/head/
H A Dctype.h48 using std::islower;
/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.h55 #define islower(c) ((__ctype + 1)[c] & _L) macro

Completed in 71 milliseconds

12345