Searched refs:ISUPPER (Results 1 – 10 of 10) sorted by relevance
42 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strcasecmp()43 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strcasecmp()67 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strncasecmp()68 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strncasecmp()
84 if (ISUPPER(ch)) { in ares_inet_net_pton_ipv4()
275 #define ISUPPER(x) (isupper((int)((unsigned char)x))) macro
38 #define ISALPHA(x) (ISLOWER(x) || ISUPPER(x))40 #define ISALNUM(x) (ISDIGIT(x) || ISLOWER(x) || ISUPPER(x))41 #define ISUPPER(x) (((x) >= 'A') && ((x) <= 'Z')) macro
133 if(ISUPPER(c)) in charclass()324 found = ISUPPER(*s); in loop()
1913 (ISUPPER(p[1]) || ISUPPER(p[2]))) { in curl_url_set()
147 if(!ISUPPER(c) && !ISDIGIT(c) && c != '-' && c != '_') in Curl_sasl_decode_mech()
965 if(ISUPPER(*cp)) in do_tftp()
694 for(p3 = str; ISUPPER(*p3); p3++) in encodeDN()
11820 (ISLOWER()/ISUPPER()/etc) have now been removed: use Py_ISLOWER() etc instead.