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

12

/barrelfish-master/include/sys/
H A Dctype.h45 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
46 #define isalpha(c) (isupper(c) || islower(c))
/barrelfish-master/include/cxx/
H A Dctype.h22 int islower(int c);
48 #undef islower macro
/barrelfish-master/kernel/
H A Dstdlib.c35 islower(int c) function
61 if(islower(c)) { // c in ['a'..'f']
/barrelfish-master/lib/libc/locale/
H A Disctype.c116 #undef islower macro
118 islower(int c) function
H A DMakefile.inc37 isdigit.3 isgraph.3 isideogram.3 islower.3 isphonogram.3 isprint.3 \
57 MLINKS+=islower.3 islower_l.3
/barrelfish-master/lib/pcre/
H A Dpcre_maketables.c98 for (i = 0; i < 256; i++) *p++ = islower(i)? toupper(i) : tolower(i);
118 if (islower(i)) p[cbit_lower + i/8] |= 1 << (i&7);
/barrelfish-master/lib/lwip/src/core/ipv4/
H A Dinet.c49 #define islower(c) in_range(c, 'a', 'z') macro
113 val = (val << 4) | (int) (c + 10 - (islower(c) ? 'a' : 'A'));
/barrelfish-master/include/
H A Dctype.h54 int islower(int);
93 #define islower(c) __sbistype((c), _CTYPE_L) macro
/barrelfish-master/lib/libc/iconv/
H A Dcitrus_bcs.h56 _CITRUS_BCS_PRED(islower, c >= 'a' && c <= 'z')
/barrelfish-master/lib/libc/inet/
H A Dinet_network.c75 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
H A Dinet_addr.c143 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
H A Dnsap_addr.c58 if (islower(c))
/barrelfish-master/lib/acpica/source/include/
H A Dacclib.h144 #define islower(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO)) macro
/barrelfish-master/lib/openssl-1.0.0d/test/
H A Ddummytest.c37 if (islower((unsigned char)(*p)))
H A Djpaketest.c37 if (islower((unsigned char)(*p)))
H A Dmd2test.c37 if (islower((unsigned char)(*p)))
H A Drc5test.c37 if (islower((unsigned char)(*p)))
/barrelfish-master/lib/lwip2/src/core/ipv4/
H A Dip4_addr.c121 #define islower(c) in_range(c, 'a', 'z') macro
189 val = (val << 4) | (u32_t)(c + 10 - (islower(c) ? 'a' : 'A'));
/barrelfish-master/lib/lwip2/src/core/ipv6/
H A Dip6_addr.c58 #define islower(c) in_range(c, 'a', 'z') macro
136 (u32_t)(10 + (islower(*s) ? *s - 'a' : *s - 'A')));
/barrelfish-master/lib/arranet/
H A Dip_addr.c119 #define islower(c) in_range(c, 'a', 'z') macro
185 val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A'));
/barrelfish-master/lib/libc/nameser/
H A Dns_ttl.c118 if (islower(ch))
/barrelfish-master/include/cxx/support/xlocale/
H A D__posix_l_fallback.h47 return ::islower(c);
/barrelfish-master/lib/acpica/source/components/utilities/
H A Dutclib.c815 return (islower(c) ? ((c)-0x20) : (c));
/barrelfish-master/lib/lua/src/
H A Dlstrlib.c273 case 'l' : res = islower(c); break;
282 return (islower(cl) ? res : !res);
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Dssltest.c1835 if (islower(c))
1944 if (islower(c))
2140 if (islower(c))

Completed in 193 milliseconds

12