Searched defs:tolower (Results 1 – 15 of 15) sorted by relevance
32 tolower(int c) in tolower() function
39 tolower(int c) in tolower() function
92 #define tolower(x) (isupper(x) ? (x) - 'A' + 'a' : (x)) macro
99 #define tolower(c) __sbtolower(c) macro
760 tolower ( in tolower() function
44 int32_t tolower; member
54 #define tolower(c) ((c) >= 'A' && (c) <= 'Z' ? (c) | 0x20 : (c)) macro
48 #define tolower(c) ((c) >= 'A' && (c) <= 'Z' ? (c) | 0x20 : (c)) macro
289 #define tolower(C) (((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C)) macro
83 #define tolower(x) (isupper(x) ? (x) + 'a' - 'A' : (x)) macro
60 #define tolower(C) (((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C)) macro
245 static __inline int tolower(int c) in tolower() function
53 #define tolower(ch) ('a' + ((ch) - 'A')) macro
396 #define tolower grub_tolower macro
1662 #define tolower(c) ((c) >= 'A' && (c) <= 'Z' ? (c) | 0x20 : (c)) macro