Lines Matching refs:c1
35 u16 len1, len2, c1, c2; in hfsplus_strcasecmp() local
44 c1 = c2 = 0; in hfsplus_strcasecmp()
46 while (len1 && !c1) { in hfsplus_strcasecmp()
47 c1 = case_fold(be16_to_cpu(*p1)); in hfsplus_strcasecmp()
57 if (c1 != c2) in hfsplus_strcasecmp()
58 return (c1 < c2) ? -1 : 1; in hfsplus_strcasecmp()
59 if (!c1 && !c2) in hfsplus_strcasecmp()
68 u16 len1, len2, c1, c2; in hfsplus_strcmp() local
78 c1 = be16_to_cpu(*p1); in hfsplus_strcmp()
80 if (c1 != c2) in hfsplus_strcmp()
81 return c1 < c2 ? -1 : 1; in hfsplus_strcmp()
129 u16 cc, c0, c1; in hfsplus_uni2asc() local
163 c1 = be16_to_cpu(*ip) - Hangul_VBase; in hfsplus_uni2asc()
164 if (c1 < Hangul_VCount) { in hfsplus_uni2asc()
167 cc = (cc + c1) * Hangul_TCount; in hfsplus_uni2asc()
173 c1 = be16_to_cpu(*ip) - Hangul_TBase; in hfsplus_uni2asc()
174 if (c1 > 0 && c1 < Hangul_TCount) { in hfsplus_uni2asc()
175 cc += c1; in hfsplus_uni2asc()
186 c1 = be16_to_cpu(*ip); in hfsplus_uni2asc()
189 hfsplus_compose_table, c1); in hfsplus_uni2asc()
209 c0 = c1; in hfsplus_uni2asc()
451 u16 c1, c2; in hfsplus_compare_dentry() local
474 c1 = c; in hfsplus_compare_dentry()
475 dstr1 = &c1; in hfsplus_compare_dentry()
495 c1 = *dstr1; in hfsplus_compare_dentry()
498 c1 = case_fold(c1); in hfsplus_compare_dentry()
499 if (!c1) { in hfsplus_compare_dentry()
511 if (c1 < c2) in hfsplus_compare_dentry()
513 else if (c1 > c2) in hfsplus_compare_dentry()