Searched defs:tolower (Results 1 – 13 of 13) 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
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
59 #define tolower(C) (((C) >= 'A' && (C) <= 'Z') ? (C) - 'A' + 'a' : (C)) macro
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