Lines Matching refs:wc
35 unsigned short wc = cp1133_2uni_1[c-0xa0];
36 if (wc != 0xfffd) {
37 *pwc = (ucs4_t) wc;
44 unsigned short wc = cp1133_2uni_2[c-0xf0];
45 if (wc != 0xfffd) {
46 *pwc = (ucs4_t) wc;
73 cp1133_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n)
76 if (wc < 0x00a0) {
77 *r = (unsigned char) wc;
80 else if (wc >= 0x00a0 && wc < 0x00b0)
81 c = cp1133_page00[wc-0x00a0];
82 else if (wc >= 0x0e80 && wc < 0x0ee0)
83 c = cp1133_page0e[wc-0x0e80];
84 else if (wc == 0x20ad)