Home
last modified time | relevance | path

Searched defs:tolower (Results 1 – 14 of 14) sorted by relevance

/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.c32 tolower(int c) in tolower() function
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dtolower.c39 tolower(int c) in tolower() function
/illumos-gate/usr/src/uts/intel/sys/acpi/platform/
H A Dacsolaris.h104 #define tolower(x) (isupper(x) ? (x) - 'A' + 'a' : (x)) macro
/illumos-gate/usr/src/boot/include/
H A Dctype.h99 #define tolower(c) __sbtolower(c) macro
/illumos-gate/usr/src/cmd/localedef/
H A Dctype.c44 int32_t tolower; member
/illumos-gate/usr/src/common/acpica/utilities/
H A Dutclib.c1010 tolower ( in tolower() function
/illumos-gate/usr/src/lib/nsswitch/dns/common/
H A Ddns_common.c55 #define tolower(c) ((c) >= 'A' && (c) <= 'Z' ? (c) | 0x20 : (c)) macro
/illumos-gate/usr/src/uts/common/sys/fs/
H A Dpc_dir.h287 #define tolower(C) (((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C)) macro
/illumos-gate/usr/src/common/mpi/
H A Dmpi.h83 #define tolower(x) (isupper(x) ? (x) + 'a' - 'A' : (x)) macro
/illumos-gate/usr/src/uts/common/io/vscan/
H A Dvscan_svc.c61 #define tolower(C) (((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C)) macro
/illumos-gate/usr/src/boot/libsa/
H A Dstand.h265 static __inline int tolower(int c) in tolower() function
/illumos-gate/usr/src/uts/common/inet/
H A Dmi.c53 #define tolower(ch) ('a' + ((ch) - 'A')) macro
/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlstrlib.c35 #define tolower(C) (((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C)) macro
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dshared.h397 #define tolower grub_tolower macro