Lines Matching refs:c1
28 int c1, c2; in utf8_strncmp() local
37 c1 = utf8byte(&cur1); in utf8_strncmp()
40 if (c1 < 0 || c2 < 0) in utf8_strncmp()
42 if (c1 != c2) in utf8_strncmp()
44 } while (c1); in utf8_strncmp()
55 int c1, c2; in utf8_strncasecmp() local
64 c1 = utf8byte(&cur1); in utf8_strncasecmp()
67 if (c1 < 0 || c2 < 0) in utf8_strncasecmp()
69 if (c1 != c2) in utf8_strncasecmp()
71 } while (c1); in utf8_strncasecmp()
86 int c1, c2; in utf8_strncasecmp_folded() local
93 c1 = utf8byte(&cur1); in utf8_strncasecmp_folded()
95 if (c1 < 0) in utf8_strncasecmp_folded()
97 if (c1 != c2) in utf8_strncasecmp_folded()
99 } while (c1); in utf8_strncasecmp_folded()