Lines Matching refs:c1
34 u16 len1, len2, c1, c2; in hfsplus_strcasecmp() local
43 c1 = c2 = 0; in hfsplus_strcasecmp()
45 while (len1 && !c1) { in hfsplus_strcasecmp()
46 c1 = case_fold(be16_to_cpu(*p1)); in hfsplus_strcasecmp()
56 if (c1 != c2) in hfsplus_strcasecmp()
57 return (c1 < c2) ? -1 : 1; in hfsplus_strcasecmp()
58 if (!c1 && !c2) in hfsplus_strcasecmp()
67 u16 len1, len2, c1, c2; in hfsplus_strcmp() local
77 c1 = be16_to_cpu(*p1); in hfsplus_strcmp()
79 if (c1 != c2) in hfsplus_strcmp()
80 return c1 < c2 ? -1 : 1; in hfsplus_strcmp()
128 u16 cc, c0, c1; in hfsplus_uni2asc() local
155 c1 = be16_to_cpu(*ip) - Hangul_VBase; in hfsplus_uni2asc()
156 if (c1 < Hangul_VCount) { in hfsplus_uni2asc()
159 cc = (cc + c1) * Hangul_TCount; in hfsplus_uni2asc()
165 c1 = be16_to_cpu(*ip) - Hangul_TBase; in hfsplus_uni2asc()
166 if (c1 > 0 && c1 < Hangul_TCount) { in hfsplus_uni2asc()
167 cc += c1; in hfsplus_uni2asc()
178 c1 = be16_to_cpu(*ip); in hfsplus_uni2asc()
181 hfsplus_compose_table, c1); in hfsplus_uni2asc()
201 c0 = c1; in hfsplus_uni2asc()
396 u16 c1, c2; in hfsplus_compare_dentry() local
417 c1 = c; in hfsplus_compare_dentry()
418 dstr1 = &c1; in hfsplus_compare_dentry()
437 c1 = *dstr1; in hfsplus_compare_dentry()
440 c1 = case_fold(c1); in hfsplus_compare_dentry()
441 if (!c1) { in hfsplus_compare_dentry()
453 if (c1 < c2) in hfsplus_compare_dentry()
455 else if (c1 > c2) in hfsplus_compare_dentry()