Home
last modified time | relevance | path

Searched refs:c2 (Results 1 – 13 of 13) sorted by relevance

/fs/hfsplus/
A Dunicode.c44 c1 = c2 = 0; in hfsplus_strcasecmp()
57 if (c1 != c2) in hfsplus_strcasecmp()
59 if (!c1 && !c2) in hfsplus_strcasecmp()
80 if (c1 != c2) in hfsplus_strcmp()
399 u16 c2; in hfsplus_hash_dentry() local
421 c2 = case_fold(c2); in hfsplus_hash_dentry()
426 c2 = c; in hfsplus_hash_dentry()
428 c2 = case_fold(c2); in hfsplus_hash_dentry()
451 u16 c1, c2; in hfsplus_compare_dentry() local
489 c2 = c; in hfsplus_compare_dentry()
[all …]
/fs/unicode/
A Dutf8-core.c24 int c1, c2; in utf8_strncmp() local
34 c2 = utf8byte(&cur2); in utf8_strncmp()
36 if (c1 < 0 || c2 < 0) in utf8_strncmp()
38 if (c1 != c2) in utf8_strncmp()
50 int c1, c2; in utf8_strncasecmp() local
60 c2 = utf8byte(&cur2); in utf8_strncasecmp()
62 if (c1 < 0 || c2 < 0) in utf8_strncasecmp()
64 if (c1 != c2) in utf8_strncasecmp()
80 int c1, c2; in utf8_strncasecmp_folded() local
88 c2 = cf->name[i++]; in utf8_strncasecmp_folded()
[all …]
/fs/hpfs/
A Ddnode.c251 int c1, c2 = 0; in hpfs_add_to_dnode() local
270 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "hpfs_add_to_dnode")) { in hpfs_add_to_dnode()
397 int c1, c2 = 0; in hpfs_add_dirent() local
442 int c1, c2 = 0; in move_to_top() local
446 if (hpfs_stop_cycles(i->i_sb, dno, &c1, &c2, "move_to_top")) in move_to_top()
526 int c1, c2 = 0; in delete_empty_dnode() local
750 int c1, c2 = 0; in hpfs_count_dnodes() local
824 int c1, c2 = 0; in hpfs_de_as_down_as_possible() local
916 int c1, c2 = 0; in map_dirent() local
1010 int c1, c2 = 0; in map_fnode_dirent() local
[all …]
A Danode.c21 int c1, c2 = 0; in hpfs_bplus_lookup() local
23 if (hpfs_sb(s)->sb_chk) if (hpfs_stop_cycles(s, a, &c1, &c2, "hpfs_bplus_lookup")) return -1; in hpfs_bplus_lookup()
71 int c1, c2 = 0; in hpfs_add_sector_to_btree() local
92 if (hpfs_stop_cycles(s, a, &c1, &c2, "hpfs_add_sector_to_btree #1")) return -1; in hpfs_add_sector_to_btree()
164 c2 = 0; in hpfs_add_sector_to_btree()
168 if (hpfs_stop_cycles(s, up, &c1, &c2, "hpfs_add_sector_to_btree #2")) return -1; in hpfs_add_sector_to_btree()
283 int c1, c2 = 0; in hpfs_remove_btree() local
304 if (hpfs_stop_cycles(s, ano, &c1, &c2, "hpfs_remove_btree #2")) return; in hpfs_remove_btree()
407 int c1, c2 = 0; in hpfs_truncate_btree() local
448 if (hpfs_stop_cycles(s, node, &c1, &c2, "hpfs_truncate_btree")) in hpfs_truncate_btree()
A Dname.c84 unsigned char c2 = upcase(hpfs_sb(s)->sb_cp_table,n2[i]); in hpfs_compare_names() local
85 if (c1 < c2) return -1; in hpfs_compare_names()
86 if (c1 > c2) return 1; in hpfs_compare_names()
A Dsuper.c102 int hpfs_stop_cycles(struct super_block *s, int key, int *c1, int *c2, in hpfs_stop_cycles() argument
105 if (*c2 && *c1 == key) { in hpfs_stop_cycles()
109 (*c2)++; in hpfs_stop_cycles()
110 if (!((*c2 - 1) & *c2)) *c1 = key; in hpfs_stop_cycles()
A Ddir.c74 int c1, c2 = 0; in hpfs_readdir() local
128 if (hpfs_stop_cycles(inode->i_sb, ctx->pos, &c1, &c2, "hpfs_readdir")) { in hpfs_readdir()
/fs/bcachefs/
A Dmean_and_variance_test.c176 u128_u c2 = u64s_to_u128(U64_MAX, U64_MAX); in mean_and_variance_u128_basic_test() local
194 KUNIT_EXPECT_EQ(test, u128_hi(u128_div(c2, 2)), U64_MAX >> 1); in mean_and_variance_u128_basic_test()
195 KUNIT_EXPECT_EQ(test, u128_lo(u128_div(c2, 2)), U64_MAX); in mean_and_variance_u128_basic_test()
/fs/ntfs3/
A Dnamei.c448 unsigned char c1, c2; in ntfs_d_compare() local
457 if ((c1 = *n1++) == (c2 = *n2++)) in ntfs_d_compare()
460 if (c1 >= 0x80 || c2 >= 0x80) in ntfs_d_compare()
463 if (toupper(c1) != toupper(c2)) in ntfs_d_compare()
/fs/nfsd/
A Dfilecache.c80 nfsd_match_cred(const struct cred *c1, const struct cred *c2) in nfsd_match_cred() argument
84 if (!uid_eq(c1->fsuid, c2->fsuid)) in nfsd_match_cred()
86 if (!gid_eq(c1->fsgid, c2->fsgid)) in nfsd_match_cred()
88 if (c1->group_info == NULL || c2->group_info == NULL) in nfsd_match_cred()
89 return c1->group_info == c2->group_info; in nfsd_match_cred()
90 if (c1->group_info->ngroups != c2->group_info->ngroups) in nfsd_match_cred()
93 if (!gid_eq(c1->group_info->gid[i], c2->group_info->gid[i])) in nfsd_match_cred()
/fs/smb/client/
A Ddir.c877 wchar_t c1, c2; local
892 l2 = codepage->char2uni(&name->name[i], name->len - i, &c2);
913 if (cifs_toupper(c1) != cifs_toupper(c2))
A Ddfs_cache.c511 wchar_t c1, c2; in dfs_path_equal() local
518 l2 = cache_cp->char2uni(&s2[i], len2 - i, &c2); in dfs_path_equal()
527 if (cifs_toupper(c1) != cifs_toupper(c2)) in dfs_path_equal()
/fs/exfat/
A Dnamei.c110 wchar_t c1, c2; in exfat_d_cmp() local
120 if (charlen != t->char2uni(&str[i], blen - i, &c2)) in exfat_d_cmp()
123 if (exfat_toupper(sb, c1) != exfat_toupper(sb, c2)) in exfat_d_cmp()

Completed in 32 milliseconds