Searched refs:wc (Results 126 - 150 of 442) sorted by relevance

1234567891011>>

/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_predict.c287 tsize_t wc = cc / 2; local
289 if (wc > stride) {
290 TIFFSwabArrayOfShort(wp, wc);
291 wc -= stride;
294 wc -= stride;
295 } while ((int32) wc > 0);
304 tsize_t wc = cc / 2; local
306 if (wc > stride) {
307 wc -= stride;
310 wc
320 tsize_t wc = cc / 4; local
337 tsize_t wc = cc / 4; local
356 tsize_t wc = cc / bps; local
484 tsize_t wc = cc/2; local
502 tsize_t wc = cc/4; local
522 tsize_t wc = cc / bps; local
[all...]
/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Dcp437.h128 cp437_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
131 if (wc < 0x0080) {
132 *r = wc;
135 else if (wc >= 0x00a0 && wc < 0x0100)
136 c = cp437_page00[wc-0x00a0];
137 else if (wc == 0x0192)
139 else if (wc >= 0x0390 && wc < 0x03c8)
140 c = cp437_page03[wc
[all...]
H A Dcp861.h128 cp861_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
131 if (wc < 0x0080) {
132 *r = wc;
135 else if (wc >= 0x00a0 && wc < 0x0100)
136 c = cp861_page00[wc-0x00a0];
137 else if (wc == 0x0192)
139 else if (wc >= 0x0390 && wc < 0x03c8)
140 c = cp861_page03[wc
[all...]
H A Dcp863.h128 cp863_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
131 if (wc < 0x0080) {
132 *r = wc;
135 else if (wc >= 0x00a0 && wc < 0x0100)
136 c = cp863_page00[wc-0x00a0];
137 else if (wc == 0x0192)
139 else if (wc >= 0x0390 && wc < 0x03c8)
140 c = cp863_page03[wc
[all...]
H A Dcp865.h128 cp865_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
131 if (wc < 0x0080) {
132 *r = wc;
135 else if (wc >= 0x00a0 && wc < 0x0100)
136 c = cp865_page00[wc-0x00a0];
137 else if (wc == 0x0192)
139 else if (wc >= 0x0390 && wc < 0x03c8)
140 c = cp865_page03[wc
[all...]
H A Dcp856.h61 unsigned short wc = cp856_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
114 cp856_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
117 if (wc < 0x0080) {
118 *r = wc;
121 else if (wc >= 0x00a0 && wc < 0x00f8)
122 c = cp856_page00[wc-0x00a0];
123 else if (wc >
[all...]
H A Dcp866.h103 cp866_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
106 if (wc < 0x0080) {
107 *r = wc;
110 else if (wc >= 0x00a0 && wc < 0x00b8)
111 c = cp866_page00[wc-0x00a0];
112 else if (wc >= 0x0400 && wc < 0x0460)
113 c = cp866_page04[wc-0x0400];
114 else if (wc
[all...]
H A Disoir165.h125 isoir165_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
131 ret = gb2312_wctomb(conv,buf,wc,2);
144 ret = iso646_cn_wctomb(conv,buf,wc,1);
157 ret = isoir165ext_wctomb(conv,r,wc,n);
H A Djohab.h88 johab_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
94 if (wc < 0x0080 && wc != 0x005c) {
95 *r = wc;
98 if (wc == 0x20a9) {
108 ret = johab_hangul_wctomb(conv,buf,wc,2);
119 ret = ksc5601_wctomb(conv,buf,wc,2);
H A Dmac_roman.h61 unsigned short wc = mac_roman_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
140 mac_roman_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
143 if (wc < 0x0080) {
144 *r = wc;
147 switch(wc) { // single-character mapping
162 if (wc >= 0x00a0 && wc < 0x0100)
163 c = mac_roman_page00[wc
[all...]
H A Dsjis.h83 sjis_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
89 ret = jisx0201_wctomb(conv,buf,wc,1);
101 ret = jisx0208_wctomb(conv,buf,wc,2);
120 if (wc >= 0xe000 && wc < 0xe758) {
124 c1 = (unsigned int) (wc - 0xe000) / 188;
125 c2 = (unsigned int) (wc - 0xe000) % 188;
H A Dbig5hkscs2001.h114 big5hkscs2001_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
121 if (wc == 0x0304 || wc == 0x030c) {
125 r[1] = last + ((wc & 24) >> 2) - 4; /* = 0x62 or 0x64 or 0xa3 or 0xa5 */
142 if (wc < 0x0080) {
145 r[0] = (unsigned char) wc;
155 ret = big5_wctomb(conv,buf,wc,2);
168 ret = hkscs1999_wctomb(conv,buf,wc,2);
171 if ((wc & ~0x0020) == 0x00ca) {
186 ret = hkscs2001_wctomb(conv,buf,wc,
[all...]
H A Dcp1124.h84 cp1124_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
87 if (wc < 0x00a0) {
88 *r = wc;
91 else if (wc >= 0x00a0 && wc < 0x00b0)
92 c = cp1124_page00[wc-0x00a0];
93 else if (wc >= 0x0400 && wc < 0x0498)
94 c = cp1124_page04[wc-0x0400];
95 else if (wc
[all...]
H A Dcp922.h81 cp922_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
84 if (wc < 0x00a8) {
85 *r = wc;
88 else if (wc >= 0x00a8 && wc < 0x0100)
89 c = cp922_page00[wc-0x00a8];
90 else if (wc >= 0x0160 && wc < 0x0180)
91 c = cp922_page01[wc-0x0160];
92 else if (wc
[all...]
H A Diso8859_5.h77 iso8859_5_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
80 if (wc < 0x00a0) {
81 *r = wc;
84 else if (wc >= 0x00a0 && wc < 0x00b0)
85 c = iso8859_5_page00[wc-0x00a0];
86 else if (wc >= 0x0400 && wc < 0x0460)
87 c = iso8859_5_page04[wc-0x0400];
88 else if (wc
[all...]
H A Dmulelao.h55 unsigned short wc = mulelao_2uni[c-0xa0]; local
56 if (wc != 0xfffd) {
57 *pwc = (ucs4_t) wc;
80 mulelao_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
83 if (wc < 0x00a0) {
84 *r = wc;
87 else if (wc == 0x00a0)
89 else if (wc >= 0x0e80 && wc < 0x0ee0)
90 c = mulelao_page0e[wc
[all...]
H A Dcp860.h123 cp860_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
126 if (wc < 0x0080) {
127 *r = wc;
130 else if (wc >= 0x00a0 && wc < 0x0100)
131 c = cp860_page00[wc-0x00a0];
132 else if (wc >= 0x0390 && wc < 0x03c8)
133 c = cp860_page03[wc-0x0390];
134 else if (wc
[all...]
H A Dmac_ukraine.h117 mac_ukraine_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
120 if (wc < 0x0080) {
121 *r = wc;
124 else if (wc >= 0x00a0 && wc < 0x00c0)
125 c = mac_ukraine_page00[wc-0x00a0];
126 else if (wc == 0x00f7)
128 else if (wc == 0x0192)
130 else if (wc >= 0x0400 && wc <
[all...]
H A Diso8859_3.h55 unsigned short wc = iso8859_3_2uni[c-0xa0]; local
56 if (wc != 0xfffd) {
57 *pwc = (ucs4_t) wc;
100 iso8859_3_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
103 if (wc < 0x00a0) {
104 *r = wc;
107 else if (wc >= 0x00a0 && wc < 0x0100)
108 c = iso8859_3_page00[wc-0x00a0];
109 else if (wc >
[all...]
H A Dcp853.h61 unsigned short wc = cp853_2uni[c-0x80]; local
62 if (wc != 0xfffd) {
63 *pwc = (ucs4_t) wc;
129 cp853_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
132 if (wc < 0x0080) {
133 *r = wc;
136 else if (wc >= 0x00a0 && wc < 0x0100)
137 c = cp853_page00[wc-0x00a0];
138 else if (wc >
[all...]
H A Dcp1125.h107 cp1125_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
110 if (wc < 0x0080) {
111 *r = wc;
114 else if (wc >= 0x00a0 && wc < 0x00b8)
115 c = cp1125_page00[wc-0x00a0];
116 else if (wc >= 0x0400 && wc < 0x0498)
117 c = cp1125_page04[wc-0x0400];
118 else if (wc
[all...]
H A Dcp1256.h127 cp1256_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
130 if (wc < 0x0080) {
131 *r = wc;
134 else if (wc >= 0x00a0 && wc < 0x0100)
135 c = cp1256_page00[wc-0x00a0];
136 else if (wc >= 0x0150 && wc < 0x0198)
137 c = cp1256_page01[wc-0x0150];
138 else if (wc
[all...]
H A Dkoi8_r.h131 koi8_r_wctomb (conv_t conv, unsigned char *r, ucs4_t wc, size_t n) argument
134 if (wc < 0x0080) {
135 *r = wc;
138 else if (wc >= 0x00a0 && wc < 0x00f8)
139 c = koi8_r_page00[wc-0x00a0];
140 else if (wc >= 0x0400 && wc < 0x0458)
141 c = koi8_r_page04[wc-0x0400];
142 else if (wc >
[all...]
/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/coreSymbolication-notify/
H A DMakefile32 grep " load" notifications.log | grep foo.bundle | wc -l | grep 1 >/dev/null
33 grep " load" notifications.log | grep bar.dylib | wc -l | grep 1 >/dev/null
34 grep " unload" notifications.log | grep foo.bundle | wc -l | grep 1 >/dev/null
35 grep " unload" notifications.log | grep bar.dylib | wc -l | grep 1 >/dev/null
/macosx-10.10.1/Libc-1044.1.2/locale/FreeBSD/
H A Dgb18030.c162 _GB18030_wcrtomb(char * __restrict s, wchar_t wc, mbstate_t * __restrict ps, locale_t loc __unused) argument
178 if ((wc & ~0x7fffffff) != 0)
180 if (wc & 0x7f000000) {
182 wc |= 0x80000000;
183 c = (wc >> 24) & 0xff;
187 c = (wc >> 16) & 0xff;
191 c = (wc >> 8) & 0xff;
195 c = wc & 0xff;
200 } else if (wc & 0x00ff0000)
202 else if (wc
[all...]

Completed in 287 milliseconds

1234567891011>>