Lines Matching full:c1
24 int c1, c2; in utf8_strncmp() local
33 c1 = utf8byte(&cur1); in utf8_strncmp()
36 if (c1 < 0 || c2 < 0) in utf8_strncmp()
38 if (c1 != c2) in utf8_strncmp()
40 } while (c1); in utf8_strncmp()
50 int c1, c2; in utf8_strncasecmp() local
59 c1 = utf8byte(&cur1); in utf8_strncasecmp()
62 if (c1 < 0 || c2 < 0) in utf8_strncasecmp()
64 if (c1 != c2) in utf8_strncasecmp()
66 } while (c1); in utf8_strncasecmp()
80 int c1, c2; in utf8_strncasecmp_folded() local
87 c1 = utf8byte(&cur1); in utf8_strncasecmp_folded()
89 if (c1 < 0) in utf8_strncasecmp_folded()
91 if (c1 != c2) in utf8_strncasecmp_folded()
93 } while (c1); in utf8_strncasecmp_folded()