Searched refs:tolower (Results 1 – 25 of 92) sorted by relevance
1234
/glibc-2.36/string/ |
D | test-strcasecmp.c | 39 while ((ret = ((unsigned char) tolower (*s1) in simple_strcasecmp() 40 - (unsigned char) tolower (*s2))) == 0 in simple_strcasecmp() 86 s2[i] = tolower (s1[i]); in do_test() 98 s1[len - 1] = tolower (s2[len - 1]) + exp_result; in do_test() 103 if (tolower (s1[len - 1]) - tolower (s2[len - 1]) != exp_result) in do_test() 107 s1[len - 1] = tolower ('a'); in do_test() 108 s2[len - 1] = toupper (tolower ('a') - 1); in do_test() 114 s1[len - 1] = tolower ('a'); in do_test() 115 s2[len - 1] = toupper (tolower ('a') + 1); in do_test() 157 p1[i] = tolower (random () & 255); in do_random_tests() [all …]
|
D | test-strncasecmp.c | 44 while ((ret = ((unsigned char) tolower (*s1) in simple_strncasecmp() 45 - (unsigned char) tolower (*s2))) == 0 in simple_strncasecmp() 106 s2[i] = tolower (s1[i]); in do_test() 118 s1[len - 1] = tolower (s2[len - 1]) + exp_result; in do_test() 123 if (tolower (s1[len - 1]) - tolower (s2[len - 1]) != exp_result) in do_test() 127 s1[len - 1] = tolower ('a'); in do_test() 128 s2[len - 1] = toupper (tolower ('a') - 1); in do_test() 134 s1[len - 1] = tolower ('a'); in do_test() 135 s2[len - 1] = toupper (tolower ('a') + 1); in do_test() 219 p1[i] = tolower (random () & 255); in do_random_tests() [all …]
|
D | test-strcasestr.c | 44 if (tolower (s1[i + j]) != tolower (s2[j])) in simple_strcasestr()
|
D | strcasecmp.c | 27 # define TOLOWER(Ch) tolower (Ch)
|
D | strncase.c | 29 # define TOLOWER(Ch) tolower (Ch)
|
D | strcasestr.c | 35 #define TOLOWER(Ch) tolower (Ch)
|
/glibc-2.36/ctype/ |
D | test_ctype.c | 77 print_char(tolower(c)); in main() 84 if (tolower (EOF) != EOF) in main() 87 printf (" tolower BOGUS %d;", tolower (EOF)); in main()
|
D | ctype.c | 44 tolower (int c) in func() 48 libc_hidden_def (tolower) in libc_hidden_def() argument
|
D | ctype.h | 122 extern int tolower (int __c) __THROW; 207 __NTH (tolower (int __c)) in __isctype_f() 220 # define tolower(c) __tobody (c, tolower, *__ctype_tolower_loc (), (c)) macro
|
D | ctype-info.c | 65 const __int32_t *__ctype_tolower = b (__int32_t, tolower, 128); 67 const __uint32_t *__ctype32_tolower = b (__uint32_t, tolower, 128);
|
D | Versions | 12 toascii; tolower; toupper;
|
/glibc-2.36/benchtests/ |
D | bench-strcasecmp.c | 36 while ((ret = ((unsigned char) tolower (*s1) in simple_strcasecmp() 37 - (unsigned char) tolower (*s2))) == 0 in simple_strcasecmp() 103 s2[i] = tolower (s1[i]); in do_test()
|
D | bench-strncasecmp.c | 39 while ((ret = ((unsigned char) tolower (*s1) in simple_strncasecmp() 40 - (unsigned char) tolower (*s2))) == 0 in simple_strncasecmp() 93 s2[i] = tolower (s1[i]); in do_test()
|
/glibc-2.36/localedata/ |
D | tst-ctype.c | 309 if (tolower (*cp) != *cp) in do_test() 312 if (tolower (*cp) != *cp2) in do_test() 315 if (tolower (*cp) != *cp) in do_test() 318 if (tolower (*cp) != *cp) in do_test() 410 if (tolower (*inp) != *resp) in do_test()
|
/glibc-2.36/localedata/tests/ |
D | test6.c | 73 if (tolower (lower[i]) != upper[i]) in main() 79 if (tolower (upper[i]) != upper[i]) in main()
|
D | test6.def | 8 tolower (<A>,<a>);(<B>,<b>);(<C>,<c>);(<D>,<d>);(<E>,<e>);(<F>,<f>); \
|
/glibc-2.36/intl/ |
D | localealias.c | 430 c1 = isupper (*p1) ? tolower (*p1) : *p1; in alias_compare() 431 c2 = isupper (*p2) ? tolower (*p2) : *p2; in alias_compare()
|
/glibc-2.36/stdio-common/ |
D | printf_fphex.c | 360 else if (tolower (ch) < 'f') in __printf_fphex() 379 else if (tolower (leading) < 'f') in __printf_fphex()
|
/glibc-2.36/include/ |
D | ctype.h | 14 libc_hidden_proto (tolower)
|
/glibc-2.36/resolv/ |
D | ns_name.c | 83 *dn++ = tolower(c); in ns_name_ntol()
|
D | ns_ttl.c | 83 *p = tolower(ch); in ns_format_ttl()
|
/glibc-2.36/inet/ |
D | inet_net.c | 81 val = (val << 4) + (tolower (c) + 10 - 'a'); in __inet_network()
|
/glibc-2.36/posix/ |
D | bug-regex22.c | 36 trans[i] = tolower (i); in main()
|
D | fnmatch.c | 106 #define FOLD(c) ((flags & FNM_CASEFOLD) ? tolower (c) : (c))
|
/glibc-2.36/conform/data/ |
D | ctype.h-data | 12 function int tolower (int)
|
1234