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

/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.c32 tolower(int c) function
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dtolower.c22 #pragma weak _tolower = tolower
37 #undef tolower macro
39 tolower(int c) function
/illumos-gate/usr/src/boot/include/
H A Dctype.h60 int tolower(int);
99 #define tolower(c) __sbtolower(c) macro
106 * tolower() and toupper() respectively, minus extra checking to ensure that
108 * implement these macros with the same error checking as tolower() and
/illumos-gate/usr/src/uts/intel/sys/acpi/platform/
H A Dacsolaris.h92 #define tolower(x) (isupper(x) ? (x) - 'A' + 'a' : (x)) macro
/illumos-gate/usr/src/cmd/localedef/
H A Dctype.c44 int32_t tolower; member in struct:ctype_node
248 ctn->tolower = wc;
371 if (ctn->tolower)
372 rl.maplower[wc] = ctn->tolower;
390 if (ctn->tolower == 0) {
393 (last_lo->tolower + 1 == ctn->tolower)) {
402 lo[rl.maplower_ext_nranges - 1].map = ctn->tolower;
/illumos-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutclib.c85 * FUNCTION: tolower
605 if (tolower (*(++String)) == 'x')
640 tolower (*(++String)) == 'x')
749 * FUNCTION: tolower
760 tolower ( function
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dnl7curi.h47 #ifndef tolower
48 #define tolower(c) ((c) >= 'A' && (c) <= 'Z' ? (c) | 0x20 : (c)) macro
/illumos-gate/usr/src/lib/nsswitch/dns/common/
H A Ddns_common.c53 #ifndef tolower
54 #define tolower(c) ((c) >= 'A' && (c) <= 'Z' ? (c) | 0x20 : (c)) macro
306 while (tolower(*host_ptr) == tolower(*aliases_ptr) &&
/illumos-gate/usr/src/common/mpi/
H A Dmpi.h82 #ifndef tolower
83 #define tolower(x) (isupper(x) ? (x) + 'a' - 'A' : (x)) macro
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dpc_dir.h289 #define tolower(C) (((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C)) macro
/illumos-gate/usr/src/uts/common/inet/
H A Dmi.c53 #define tolower(ch) ('a' + ((ch) - 'A')) macro
525 ch = tolower(ch);
/illumos-gate/usr/src/uts/common/io/vscan/
H A Dvscan_svc.c60 #define tolower(C) (((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C)) macro
1212 c1 = tolower(c1);
1213 c2 = tolower(c2);
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstand.h241 static __inline int tolower(int c) function
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dshared.h396 #define tolower grub_tolower macro
/illumos-gate/usr/src/uts/common/inet/nca/
H A Dnca.h1661 #ifndef tolower
1662 #define tolower(c) ((c) >= 'A' && (c) <= 'Z' ? (c) | 0x20 : (c)) macro

Completed in 102 milliseconds