Lines Matching refs:c1
121 uint16_t c1, c2, ctmp; in iconv_xlat16_conv() local
134 c1 = ir > 1 ? *(src+1) & 0xff : 0; in iconv_xlat16_conv()
138 c1 = c2 & 0x80 ? c1 | 0x100 : c1; in iconv_xlat16_conv()
141 if (ir > 1 && dp->d_table[c1] && dp->d_table[c1][c2]) { in iconv_xlat16_conv()
155 c1 = C2I1(ctmp); in iconv_xlat16_conv()
161 c1 &= 0xff00; in iconv_xlat16_conv()
162 if (!dp->d_table[c1]) { in iconv_xlat16_conv()
172 code = dp->d_table[c1][c2]; in iconv_xlat16_conv()
186 c1 = C2I1(ctmp << 8); in iconv_xlat16_conv()
191 code = dp->d_table[c1][c2]; in iconv_xlat16_conv()
302 int c1, c2, out; in iconv_xlat16_tolower() local
305 c1 = C2I1(c << 8); in iconv_xlat16_tolower()
308 c1 = C2I1(c); in iconv_xlat16_tolower()
313 if (dp->d_table[c1] && dp->d_table[c1][c2] & XLAT16_HAS_LOWER_CASE) { in iconv_xlat16_tolower()
315 out = dp->d_table[c1][c2] & 0xffff; in iconv_xlat16_tolower()
327 int c1, c2, out; in iconv_xlat16_toupper() local
330 c1 = C2I1(c << 8); in iconv_xlat16_toupper()
333 c1 = C2I1(c); in iconv_xlat16_toupper()
338 if (dp->d_table[c1] && dp->d_table[c1][c2] & XLAT16_HAS_UPPER_CASE) { in iconv_xlat16_toupper()
339 out = dp->d_table[c1][c2] & 0xffff; in iconv_xlat16_toupper()