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

/linux-master/arch/s390/boot/
H A Dstring.c50 #define TOLOWER(x) ((x) | 0x20) macro
55 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2]))
79 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
85 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
/linux-master/drivers/firmware/efi/libstub/
H A Dstring.c112 #define TOLOWER(x) ((x) | 0x20) macro
117 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2]))
140 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
146 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
/linux-master/arch/x86/boot/
H A Dstring.c100 #define TOLOWER(x) ((x) | 0x20) macro
105 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2]))
127 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x')
133 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
/linux-master/drivers/usb/storage/
H A Dusb.c460 #define TOLOWER(x) ((x) | 0x20) macro
501 switch (TOLOWER(*p)) {

Completed in 122 milliseconds