Home | History | Annotate | Download | only in llvm

Lines Matching refs:ISLOWER

8219 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
8220 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
8222 # define ISLOWER(c) \
8226 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
8235 if (XOR (islower (i), ISLOWER (i))