Lines Matching full: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
156 c1 = be16_to_cpu(*ip) - Hangul_VBase; in hfsplus_uni2asc()
157 if (c1 < Hangul_VCount) { in hfsplus_uni2asc()
160 cc = (cc + c1) * Hangul_TCount; in hfsplus_uni2asc()
166 c1 = be16_to_cpu(*ip) - Hangul_TBase; in hfsplus_uni2asc()
167 if (c1 > 0 && c1 < Hangul_TCount) { in hfsplus_uni2asc()
168 cc += c1; in hfsplus_uni2asc()
179 c1 = be16_to_cpu(*ip); in hfsplus_uni2asc()
182 hfsplus_compose_table, c1); in hfsplus_uni2asc()
202 c0 = c1; in hfsplus_uni2asc()
444 u16 c1, c2; in hfsplus_compare_dentry() local
467 c1 = c; in hfsplus_compare_dentry()
468 dstr1 = &c1; in hfsplus_compare_dentry()
488 c1 = *dstr1; in hfsplus_compare_dentry()
491 c1 = case_fold(c1); in hfsplus_compare_dentry()
492 if (!c1) { in hfsplus_compare_dentry()
504 if (c1 < c2) in hfsplus_compare_dentry()
506 else if (c1 > c2) in hfsplus_compare_dentry()