Home
last modified time | relevance | path

Searched defs:TOLOWER (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/diff/lib/
H A Dstrftime.c227 # define TOLOWER(Ch, L) __towlower_l (Ch, L) macro
230 # define TOLOWER(Ch, L) towlower (Ch) macro
236 # define TOLOWER(Ch, L) __tolower_l (Ch, L) macro
239 # define TOLOWER(Ch, L) tolower (Ch) macro
243 # define TOLOWER(Ch, L) (isupper (Ch) ? tolower (Ch) : (Ch)) macro
/freebsd/contrib/nvi/common/
H A Dmultibyte.h53 #define TOLOWER towlower macro
87 #define TOLOWER tolower macro
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_str.h30 #define TOLOWER(c) ((((c) >= 'A') && ((c) <= 'Z')) ? ((c) + 'a' - 'A') : (c)) macro
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h839 TOLOWER, enumerator
/freebsd/sys/netpfil/ipfilter/netinet/
H A Dip_compat.h605 #define TOLOWER(x) tolower((u_char)(x)) macro