Home
last modified time | relevance | path

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

/linux-3.4.99/arch/x86/boot/
Dstring.c69 #define TOLOWER(x) ((x) | 0x20) macro
74 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2])) in simple_guess_base()
97 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x') in simple_strtoull()
103 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
/linux-3.4.99/drivers/usb/storage/
Dusb.c472 #define TOLOWER(x) ((x) | 0x20) macro
510 switch (TOLOWER(*p)) { in adjust_quirks()