Searched refs:wc1 (Results 1 - 13 of 13) sorted by relevance

/macosx-10.10.1/libiconv-42/libiconv/lib/
H A Dutf16be.h65 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10); local
67 r[0] = (unsigned char) (wc1 >> 8);
68 r[1] = (unsigned char) wc1;
H A Dutf16le.h65 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10); local
67 r[0] = (unsigned char) wc1;
68 r[1] = (unsigned char) (wc1 >> 8);
H A Djava.h117 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10); local
122 i = (wc1 >> 12) & 0x0f; r[2] = (i < 10 ? '0'+i : 'a'-10+i);
123 i = (wc1 >> 8) & 0x0f; r[3] = (i < 10 ? '0'+i : 'a'-10+i);
124 i = (wc1 >> 4) & 0x0f; r[4] = (i < 10 ? '0'+i : 'a'-10+i);
125 i = wc1 & 0x0f; r[5] = (i < 10 ? '0'+i : 'a'-10+i);
H A Dutf16.h96 ucs4_t wc1 = 0xd800 + ((wc - 0x10000) >> 10); local
98 r[0] = (unsigned char) (wc1 >> 8);
99 r[1] = (unsigned char) wc1;
H A Dutf7.h168 ucs4_t wc1 = wc >> 16; local
170 if (!(wc1 >= 0xd800 && wc1 < 0xdc00)) abort();
172 *pwc = 0x10000 + ((wc1 - 0xd800) << 10) + (wc2 - 0xdc00);
272 unsigned int wc1 = 0xd800 + ((wc - 0x10000) >> 10); local
274 wc = (wc1 << 16) | wc2;
H A Dbig5hkscs1999.h90 ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */ local
94 *pwc = wc1;
H A Dbig5hkscs2001.h97 ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */ local
101 *pwc = wc1;
H A Dbig5hkscs2004.h102 ucs4_t wc1 = ((c2 >> 3) << 2) + 0x009a; /* = 0x00ca or 0x00ea */ local
106 *pwc = wc1;
H A Deuc_jisx0213.h85 ucs4_t wc1 = jisx0213_to_ucs_combining[wc - 1][0]; local
89 *pwc = wc1;
H A Dshift_jisx0213.h100 ucs4_t wc1 = jisx0213_to_ucs_combining[wc - 1][0]; local
104 *pwc = wc1;
H A Diso2022_jp3.h172 ucs4_t wc1 = jisx0213_to_ucs_combining[wc - 1][0]; local
176 *pwc = wc1;
/macosx-10.10.1/tcl-105/tcl_ext/xotcl/xotcl/apps/actiweb/
H A DCounter4.xotcl51 ### Create two proxy instances wc1 und wc2
52 HtmlProxyCounter wc1 -realSubject c1
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/readline/
H A Dcomplete.c1053 wchar_t wc1, wc2; local
1084 v = mbrtowc (&wc1, match_list[i]+si, strlen (match_list[i]+si), &ps1);
1086 wc1 = towlower (wc1);
1088 if (wc1 != wc2)

Completed in 163 milliseconds