Lines Matching full:c1
35 u16 len1, len2, c1, c2; in hfsplus_strcasecmp() local
56 c1 = c2 = 0; in hfsplus_strcasecmp()
58 while (len1 && !c1) { in hfsplus_strcasecmp()
59 c1 = case_fold(be16_to_cpu(*p1)); in hfsplus_strcasecmp()
69 if (c1 != c2) in hfsplus_strcasecmp()
70 return (c1 < c2) ? -1 : 1; in hfsplus_strcasecmp()
71 if (!c1 && !c2) in hfsplus_strcasecmp()
80 u16 len1, len2, c1, c2; in hfsplus_strcmp() local
102 c1 = be16_to_cpu(*p1); in hfsplus_strcmp()
104 if (c1 != c2) in hfsplus_strcmp()
105 return c1 < c2 ? -1 : 1; in hfsplus_strcmp()
152 u16 cc, c0, c1; in hfsplus_uni2asc() local
186 c1 = be16_to_cpu(*ip) - Hangul_VBase; in hfsplus_uni2asc()
187 if (c1 < Hangul_VCount) { in hfsplus_uni2asc()
190 cc = (cc + c1) * Hangul_TCount; in hfsplus_uni2asc()
196 c1 = be16_to_cpu(*ip) - Hangul_TBase; in hfsplus_uni2asc()
197 if (c1 > 0 && c1 < Hangul_TCount) { in hfsplus_uni2asc()
198 cc += c1; in hfsplus_uni2asc()
209 c1 = be16_to_cpu(*ip); in hfsplus_uni2asc()
212 hfsplus_compose_table, c1); in hfsplus_uni2asc()
232 c0 = c1; in hfsplus_uni2asc()
489 u16 c1, c2; in hfsplus_compare_dentry() local
512 c1 = c; in hfsplus_compare_dentry()
513 dstr1 = &c1; in hfsplus_compare_dentry()
533 c1 = *dstr1; in hfsplus_compare_dentry()
536 c1 = case_fold(c1); in hfsplus_compare_dentry()
537 if (!c1) { in hfsplus_compare_dentry()
549 if (c1 < c2) in hfsplus_compare_dentry()
551 else if (c1 > c2) in hfsplus_compare_dentry()