/kernel/linux/linux-5.10/lib/ |
H A D | ts_kmp.c | 57 != (icase ? toupper(text[i]) : text[i])) in kmp_find() 60 == (icase ? toupper(text[i]) : text[i])) in kmp_find() 81 while (k > 0 && (icase ? toupper(pattern[k]) : pattern[k]) in compute_prefix_tbl() 82 != (icase ? toupper(pattern[q]) : pattern[q])) in compute_prefix_tbl() 84 if ((icase ? toupper(pattern[k]) : pattern[k]) in compute_prefix_tbl() 85 == (icase ? toupper(pattern[q]) : pattern[q])) in compute_prefix_tbl() 111 kmp->pattern[i] = toupper(((u8 *)pattern)[i]); in kmp_init()
|
H A D | ts_bm.c | 78 if ((icase ? toupper(text[shift-i]) in bm_find() 162 bm->pattern[i] = toupper(((u8 *)pattern)[i]); in bm_init()
|
/kernel/linux/linux-6.6/lib/ |
H A D | ts_kmp.c | 57 != (icase ? toupper(text[i]) : text[i])) in kmp_find() 60 == (icase ? toupper(text[i]) : text[i])) in kmp_find() 81 while (k > 0 && (icase ? toupper(pattern[k]) : pattern[k]) in compute_prefix_tbl() 82 != (icase ? toupper(pattern[q]) : pattern[q])) in compute_prefix_tbl() 84 if ((icase ? toupper(pattern[k]) : pattern[k]) in compute_prefix_tbl() 85 == (icase ? toupper(pattern[q]) : pattern[q])) in compute_prefix_tbl() 111 kmp->pattern[i] = toupper(((u8 *)pattern)[i]); in kmp_init()
|
H A D | ts_bm.c | 67 t = toupper(t); in matchpat() 179 bm->pattern[i] = toupper(((u8 *)pattern)[i]); in bm_init()
|
/kernel/liteos_m/testsuites/unittest/posix/src/ctype/ |
H A D | toupper_test.c | 75 int ret = toupper(a); 77 LOG("[DEMO] posix ctype test case 1:toupper(%c)==%c ok.\n", a, ret); 79 LOG("[DEMO] posix ctype test case 1:toupper(%c)!=%c fail.\n", a, ret); 93 int ret = toupper(a); 95 LOG("[DEMO] posix ctype test case 2:toupper(%c)==%c ok.\n", a, ret); 97 LOG("[DEMO] posix ctype test case 2:toupper(%c)!=%c fail.\n", a, ret); 111 int ret = toupper(a); 113 LOG("[DEMO] posix ctype test case 3:toupper(%c)==%c ok.\n", a, ret); 115 LOG("[DEMO] posix ctype test case 3:toupper(%c)!=%c fail.\n", a, ret); 129 int ret = toupper( [all...] |
/kernel/linux/linux-5.10/fs/affs/ |
H A D | namei.c | 17 /* Simple toupper() for DOS\1 */ 25 /* International toupper() for DOS\3 ("international") */ 46 __affs_hash_dentry(const struct dentry *dentry, struct qstr *qstr, toupper_t toupper, bool notruncate) in __affs_hash_dentry() argument 60 hash = partial_name_hash(toupper(*name), hash); in __affs_hash_dentry() 83 const char *str, const struct qstr *name, toupper_t toupper, in __affs_compare_dentry() 109 if (toupper(*aname++) != toupper(*bname++)) in __affs_compare_dentry() 138 affs_match(struct dentry *dentry, const u8 *name2, toupper_t toupper) in affs_match() argument 151 if (toupper(*name++) != toupper(*name in affs_match() 82 __affs_compare_dentry(unsigned int len, const char *str, const struct qstr *name, toupper_t toupper, bool notruncate) __affs_compare_dentry() argument 159 toupper_t toupper = affs_get_toupper(sb); affs_hash_name() local 174 toupper_t toupper = affs_get_toupper(sb); affs_find_entry() local [all...] |
/kernel/linux/linux-5.10/drivers/acpi/ |
H A D | acpi_pnp.c | 329 char c = toupper(idstr[i]); in matching_id() 332 || (list_id[i] != 'X' && c != toupper(list_id[i]))) in matching_id()
|
/kernel/linux/linux-6.6/drivers/acpi/ |
H A D | acpi_pnp.c | 327 char c = toupper(idstr[i]); in matching_id() 330 || (list_id[i] != 'X' && c != toupper(list_id[i]))) in matching_id()
|
/kernel/liteos_m/testsuites/unittest/fuzz/src/ctype/ |
H A D | toupper_fuzz.c | 57 (void)toupper(c); in ToupperFuzzTest() 60 printf("Fuzz test in line [%d] toupper ok\n", __LINE__); in ToupperFuzzTest()
|
/kernel/linux/linux-5.10/drivers/parport/ |
H A D | probe.c | 79 *u = toupper(*u); in parse_data() 94 *u = toupper(*u); in parse_data()
|
/kernel/linux/linux-5.10/arch/c6x/kernel/ |
H A D | soc.c | 44 str[i] - '0' : toupper(str[i]) - 'A' + 10; in get_mac_addr_from_cmdline()
|
/kernel/linux/linux-5.10/tools/lib/symbol/ |
H A D | kallsyms.c | 16 symbol_type = toupper(symbol_type); in kallsyms__is_function()
|
/kernel/linux/linux-6.6/tools/lib/symbol/ |
H A D | kallsyms.c | 16 symbol_type = toupper(symbol_type); in kallsyms__is_function()
|
/kernel/linux/linux-5.10/drivers/acpi/acpica/ |
H A D | utnonansi.c | 71 *string = (char)toupper((int)*string); in acpi_ut_strupr()
|
/kernel/linux/linux-5.10/tools/include/linux/ |
H A D | ctype.h | 58 #define toupper(c) __toupper(c) macro
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | ctype.h | 57 #define toupper(c) __toupper(c) macro
|
/kernel/linux/linux-6.6/drivers/acpi/acpica/ |
H A D | utnonansi.c | 71 *string = (char)toupper((int)*string); in acpi_ut_strupr()
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | ctype.h | 64 #define toupper(c) __toupper(c) macro
|
/kernel/linux/linux-6.6/tools/include/linux/ |
H A D | ctype.h | 65 #define toupper(c) __toupper(c) macro
|
/kernel/linux/linux-6.6/fs/ntfs3/ |
H A D | namei.c | 498 hash = partial_name_hash(toupper(c), hash); in ntfs_d_hash() 557 if (toupper(c1) != toupper(c2)) in ntfs_d_compare()
|
/kernel/linux/linux-5.10/scripts/kconfig/lxdialog/ |
H A D | checklist.c | 200 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist()
|
/kernel/linux/linux-5.10/drivers/pnp/ |
H A D | driver.c | 23 idb[i] != 'X' && toupper(ida[i]) != toupper(idb[i])) in compare_func()
|
/kernel/linux/linux-6.6/drivers/pnp/ |
H A D | driver.c | 23 idb[i] != 'X' && toupper(ida[i]) != toupper(idb[i])) in compare_func()
|
/kernel/linux/linux-6.6/scripts/kconfig/lxdialog/ |
H A D | checklist.c | 200 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist()
|
/kernel/linux/linux-5.10/drivers/infiniband/hw/hfi1/ |
H A D | efivar.c | 176 prefix_name[i] = toupper(prefix_name[i]); in read_hfi1_efi_var()
|