Home
last modified time | relevance | path

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

/linux-6.12.1/arch/s390/boot/
Dstring.c66 #define TOLOWER(x) ((x) | 0x20) macro
71 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2])) in simple_guess_base()
95 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x') in simple_strtoull()
101 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
/linux-6.12.1/drivers/firmware/efi/libstub/
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-6.12.1/arch/x86/boot/
Dstring.c100 #define TOLOWER(x) ((x) | 0x20) macro
105 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2])) in simple_guess_base()
127 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x') in simple_strtoull()
133 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
/linux-6.12.1/drivers/usb/storage/
Dusb.c554 #define TOLOWER(x) ((x) | 0x20) macro
595 switch (TOLOWER(*p)) { in usb_stor_adjust_quirks()