Lines Matching full:c2
121 uint16_t c1, c2, ctmp; in iconv_xlat16_conv() local
135 c2 = *src & 0xff; in iconv_xlat16_conv()
138 c1 = c2 & 0x80 ? c1 | 0x100 : c1; in iconv_xlat16_conv()
139 c2 = c2 & 0x80 ? c2 & 0x7f : c2; in iconv_xlat16_conv()
141 if (ir > 1 && dp->d_table[c1] && dp->d_table[c1][c2]) { in iconv_xlat16_conv()
156 c2 = C2I2(ctmp); in iconv_xlat16_conv()
172 code = dp->d_table[c1][c2]; in iconv_xlat16_conv()
187 c2 = C2I2(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
306 c2 = C2I2(c << 8); in iconv_xlat16_tolower()
309 c2 = C2I2(c); in iconv_xlat16_tolower()
313 if (dp->d_table[c1] && dp->d_table[c1][c2] & XLAT16_HAS_LOWER_CASE) { in iconv_xlat16_tolower()
314 /*return (int)(dp->d_table[c1][c2] & 0xffff);*/ 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
331 c2 = C2I2(c << 8); in iconv_xlat16_toupper()
334 c2 = C2I2(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()