Searched refs:wc (Results 101 - 125 of 393) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libiconv-1.11/lib/
H A Dtcvn.h84 unsigned short wc; local
87 wc = tcvn_2uni_1[c];
89 wc = c;
91 wc = tcvn_2uni_2[c-0x80];
94 if (wc >= 0x0300 && wc < 0x0340) {
95 /* See whether last_wc and wc can be combined. */
98 switch (wc) {
143 if (wc >= 0x0041 && wc <
218 tcvn_wctomb(conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
[all...]
H A Dcp874.h61 unsigned short wc = cp874_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
91 cp874_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
94 if (wc < 0x0080) {
95 *r = wc;
98 else if (wc == 0x00a0)
100 else if (wc >= 0x0e00 && wc < 0x0e60)
101 c = cp874_page0e[wc
[all...]
H A Dcp932.h131 cp932_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
137 ret = ascii_wctomb(conv,buf,wc,1);
149 ret = jisx0201_wctomb(conv,buf,wc,1);
161 ret = jisx0208_wctomb(conv,buf,wc,2);
179 ret = cp932ext_wctomb(conv,buf,wc,2);
191 if (wc >= 0xe000 && wc < 0xe758) {
195 c1 = (unsigned int) (wc - 0xe000) / 188;
196 c2 = (unsigned int) (wc - 0xe000) % 188;
203 if (wc
[all...]
H A Deuc_jp.h111 euc_jp_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
117 ret = ascii_wctomb(conv,r,wc,n);
122 ret = jisx0208_wctomb(conv,buf,wc,2);
133 ret = jisx0201_wctomb(conv,buf,wc,1);
144 ret = jisx0212_wctomb(conv,buf,wc,2);
156 if (wc == 0x00a5) {
160 if (wc == 0x203e) {
167 if (wc >= 0xe000 && wc < 0xe758) {
168 if (wc <
[all...]
H A Darmscii_8.h55 unsigned short wc = armscii_8_2uni[c-0xa0]; local
56 if (wc != 0xfffd) {
57 *pwc = (ucs4_t) wc;
94 armscii_8_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
97 if (wc < 0x0028) {
98 *r = wc;
101 else if (wc >= 0x0028 && wc < 0x0030)
102 c = armscii_8_page00[wc-0x0028];
103 else if (wc >
[all...]
H A Dnextstep.h61 unsigned short wc = nextstep_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
119 nextstep_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
122 if (wc < 0x0080) {
123 *r = wc;
126 else if (wc >= 0x00a0 && wc < 0x0100)
127 c = nextstep_page00[wc-0x00a0];
128 else if (wc >
[all...]
H A Dtds565.h87 tds565_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
90 if (wc < 0x0040) {
91 *r = wc;
94 else if (wc >= 0x0040 && wc < 0x0080)
95 c = tds565_page00[wc-0x0040];
96 else if (wc >= 0x00c0 && wc < 0x0100)
97 c = tds565_page00_1[wc-0x00c0];
98 else if (wc >
[all...]
H A Dbig5hkscs1999.h107 big5hkscs1999_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
114 if (wc == 0x0304 || wc == 0x030c) {
118 r[1] = last + ((wc & 24) >> 2) - 4; /* = 0x62 or 0x64 or 0xa3 or 0xa5 */
135 if (wc < 0x0080) {
138 r[0] = (unsigned char) wc;
148 ret = big5_wctomb(conv,buf,wc,2);
161 ret = hkscs1999_wctomb(conv,buf,wc,2);
164 if ((wc & ~0x0020) == 0x00ca) {
H A Diso8859_9.h69 iso8859_9_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
72 if (wc < 0x00d0) {
73 *r = wc;
76 else if (wc >= 0x00d0 && wc < 0x0100)
77 c = iso8859_9_page00[wc-0x00d0];
78 else if (wc >= 0x0118 && wc < 0x0160)
79 c = iso8859_9_page01[wc-0x0118];
H A Dmac_cyrillic.h110 mac_cyrillic_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
113 if (wc < 0x0080) {
114 *r = wc;
117 else if (wc >= 0x00a0 && wc < 0x00c0)
118 c = mac_cyrillic_page00[wc-0x00a0];
119 else if (wc == 0x00f7)
121 else if (wc == 0x0192)
123 else if (wc >= 0x0400 && wc <
[all...]
H A Dmac_greek.h61 unsigned short wc = mac_greek_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
111 mac_greek_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
114 if (wc < 0x0080) {
115 *r = wc;
118 else if (wc >= 0x00a0 && wc < 0x0100)
119 c = mac_greek_page00[wc-0x00a0];
120 else if (wc
[all...]
H A Dmac_thai.h61 unsigned short wc = mac_thai_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
104 mac_thai_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
107 if (wc < 0x0080) {
108 *r = wc;
111 else if (wc >= 0x00a0 && wc < 0x00c0)
112 c = mac_thai_page00[wc-0x00a0];
113 else if (wc >
[all...]
H A Dmac_iceland.h61 unsigned short wc = mac_iceland_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
134 mac_iceland_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
137 if (wc < 0x0080) {
138 *r = wc;
141 else if (wc >= 0x00a0 && wc < 0x0100)
142 c = mac_iceland_page00[wc-0x00a0];
143 else if (wc >
[all...]
H A Dmac_turkish.h61 unsigned short wc = mac_turkish_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
135 mac_turkish_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
138 if (wc < 0x0080) {
139 *r = wc;
142 else if (wc >= 0x00a0 && wc < 0x0100)
143 c = mac_turkish_page00[wc-0x00a0];
144 else if (wc >
[all...]
H A Dcp950.h149 unsigned short wc = cp950_2uni_pagea1[i]; local
150 if (wc != 0xfffd) {
151 *pwc = (ucs4_t) wc;
188 cp950_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
194 ret = ascii_wctomb(conv,r,wc,n);
199 switch (wc >> 8) {
201 if (wc == 0x00af) { buf[0] = 0xa1; buf[1] = 0xc2; ret = 2; break; }
202 if (wc == 0x00a2 || wc == 0x00a3 || wc
[all...]
H A Dcp862.h123 cp862_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
126 if (wc < 0x0080) {
127 *r = wc;
130 else if (wc >= 0x00a0 && wc < 0x0100)
131 c = cp862_page00[wc-0x00a0];
132 else if (wc == 0x0192)
134 else if (wc >= 0x0390 && wc < 0x03c8)
135 c = cp862_page03[wc
[all...]
H A Dmac_hebrew.h61 unsigned short wc = mac_hebrew_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
110 mac_hebrew_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
113 if (wc < 0x0080) {
114 *r = wc;
117 else if (wc >= 0x00a0 && wc < 0x0100)
118 c = mac_hebrew_page00[wc-0x00a0];
119 else if (wc >
[all...]
H A Dces_big5.h48 ces_big5_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
54 ret = ascii_wctomb(conv,r,wc,n);
59 ret = big5_wctomb(conv,buf,wc,2);
H A Dces_gbk.h43 ces_gbk_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
49 ret = ascii_wctomb(conv,r,wc,n);
54 ret = gbk_wctomb(conv,buf,wc,2);
H A Ddec_kanji.h49 dec_kanji_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, int n) argument
55 ret = ascii_wctomb(conv,r,wc,n);
60 ret = jisx0208_wctomb(conv,buf,wc,2);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/unicode/charsets/
H A Dmac_chinese_simp.c48 ucs2_t wc = in[0]; local
50 if (wc <= 0x7f) {
52 out[0] = (u_int8_t)wc;
54 } else if ((wc & 0xf000) == 0xe000) {
58 ucs2_t comp = cjk_compose(wc, in[1], mac_chinese_simp_compose,
61 wc = comp;
69 return cjk_char_push(cjk_lookup(wc, mac_chinese_simp_uni2_index,
H A Dmac_turkish.h61 unsigned short wc = mac_turkish_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs2_t) wc;
135 char_ucs2_to_mac_turkish (unsigned char *r, ucs2_t wc) argument
138 if (wc < 0x0080) {
139 *r = wc;
142 else if (wc >= 0x00a0 && wc < 0x0100)
143 c = mac_turkish_page00[wc-0x00a0];
144 else if (wc >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/unicode/charsets/
H A Dmac_chinese_simp.c48 ucs2_t wc = in[0]; local
50 if (wc <= 0x7f) {
52 out[0] = (u_int8_t)wc;
54 } else if ((wc & 0xf000) == 0xe000) {
58 ucs2_t comp = cjk_compose(wc, in[1], mac_chinese_simp_compose,
61 wc = comp;
69 return cjk_char_push(cjk_lookup(wc, mac_chinese_simp_uni2_index,
H A Dmac_turkish.h61 unsigned short wc = mac_turkish_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs2_t) wc;
135 char_ucs2_to_mac_turkish (unsigned char *r, ucs2_t wc) argument
138 if (wc < 0x0080) {
139 *r = wc;
142 else if (wc >= 0x00a0 && wc < 0x0100)
143 c = mac_turkish_page00[wc-0x00a0];
144 else if (wc >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/mlx4/
H A Dcq.c246 struct ib_wc *wc)
260 wc->status = IB_WC_LOC_LEN_ERR;
263 wc->status = IB_WC_LOC_QP_OP_ERR;
266 wc->status = IB_WC_LOC_PROT_ERR;
269 wc->status = IB_WC_WR_FLUSH_ERR;
272 wc->status = IB_WC_MW_BIND_ERR;
275 wc->status = IB_WC_BAD_RESP_ERR;
278 wc->status = IB_WC_LOC_ACCESS_ERR;
281 wc->status = IB_WC_REM_INV_REQ_ERR;
284 wc
245 mlx4_ib_handle_error_cqe(struct mlx4_err_cqe *cqe, struct ib_wc *wc) argument
306 mlx4_ib_poll_one(struct mlx4_ib_cq *cq, struct mlx4_ib_qp **cur_qp, struct ib_wc *wc) argument
439 mlx4_ib_poll_cq(struct ib_cq *ibcq, int num_entries, struct ib_wc *wc) argument
[all...]

Completed in 203 milliseconds

1234567891011>>