Home
last modified time | relevance | path

Searched refs:TOLOWER (Results 1 – 3 of 3) sorted by relevance

/linux/arch/s390/boot/
H A Dstring.c78 #define TOLOWER(x) ((x) | 0x20) macro
83 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2])) in simple_guess_base()
107 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x') in simple_strtoull()
113 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
/linux/drivers/firmware/efi/libstub/
H A Dstring.c112 #define TOLOWER(x) ((x) | 0x20) macro
117 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2])) in simple_guess_base()
140 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x') in simple_strtoull()
146 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
/linux/arch/x86/boot/
H A Dstring.c92 #define TOLOWER(x) ((x) | 0x20) macro
97 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2])) in simple_guess_base()
119 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x') in simple_strtoull()
125 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()