Home
last modified time | relevance | path

Searched refs:uni (Results 1 – 22 of 22) sorted by relevance

/illumos-gate/usr/src/lib/iconv_modules/vi/common/
H A Dtcvn%UTF-8.c101 unsigned long uni = 0; in _icv_iconv() local
103 tcvn_2_uni((unsigned char*)*inbuf, &uni); in _icv_iconv()
105 if (ISCOMB_UNI(uni)) { in _icv_iconv()
110 switch (uni) { in _icv_iconv()
152 if (uni >= 0x0041 && uni <= 0x01b0 in _icv_iconv()
153 && ((tcvn_comp_bases_mask[(uni-0x0040) >> 5] >> (uni & 0x1f)) & 1)) { in _icv_iconv()
158 st->last = uni; in _icv_iconv()
165 if (uni < 0x80) { in _icv_iconv()
166 *(*outbuf)++ = (char)uni; in _icv_iconv()
168 } else if (uni >= 0x0080 && uni <= 0x07ff) { in _icv_iconv()
[all …]
H A Dviscii%UTF-8.c99 unsigned long uni = 0; in _icv_iconv() local
101 viscii_2_uni((unsigned char*)*inbuf, &uni); in _icv_iconv()
102 if (uni < 0x80) { in _icv_iconv()
103 *(*outbuf)++ = (char)uni; in _icv_iconv()
105 } else if (uni >= 0x0080 && uni <= 0x07ff) { in _icv_iconv()
110 *(*outbuf)++ = (char)((uni >> 6) & 0x1f) | 0xc0; in _icv_iconv()
111 *(*outbuf)++ = (char)(uni & 0x3f) | 0x80; in _icv_iconv()
113 } else if (uni >= 0x0800 && uni <= 0xffff) { in _icv_iconv()
118 *(*outbuf)++ = (char)((uni >> 12) & 0xf) | 0xe0; in _icv_iconv()
119 *(*outbuf)++ = (char)((uni >>6) & 0x3f) | 0x80; in _icv_iconv()
[all …]
H A Dtcvn%UCS-2.c109 unsigned long uni = 0; in _icv_iconv() local
111 tcvn_2_uni((unsigned char*)*inbuf, &uni); in _icv_iconv()
113 if (ISCOMB_UNI(uni)) { in _icv_iconv()
118 switch (uni) { in _icv_iconv()
129 uni = vi_comb_data[unidx].composed[k]; in _icv_iconv()
142 if (uni >= 0x0041 && uni <= 0x01b0 in _icv_iconv()
143 && ((tcvn_comp_bases_mask[(uni-0x0040) >> 5] >> (uni & 0x1f)) & 1)) { in _icv_iconv()
148 st->last = uni; in _icv_iconv()
154 SET_UCS(uni); in _icv_iconv()
H A Dviscii%UCS-2.c94 unsigned long uni = 0; in _icv_iconv() local
96 viscii_2_uni((unsigned char*)*inbuf, &uni); in _icv_iconv()
98 *(*outbuf)++ = (unsigned char)(uni&0xff); in _icv_iconv()
99 *(*outbuf)++ = (unsigned char)((uni>>8)&0xff); in _icv_iconv()
101 *(*outbuf)++ = (unsigned char)((uni>>8)&0xff); in _icv_iconv()
102 *(*outbuf)++ = (unsigned char)((uni)&0xff); in _icv_iconv()
H A DUCS-2%tcvn.c97 unsigned long uni = 0; in _icv_iconv() local
113 uni |= (unsigned long)c1; in _icv_iconv()
114 uni |= (unsigned long)c2<< 8; in _icv_iconv()
116 uni |= (unsigned long)c1<< 8; in _icv_iconv()
117 uni |= (unsigned long)c2; in _icv_iconv()
126 if (uni_2_tcvn(uni, &ch) == 1) { in _icv_iconv()
H A DUCS-2%viscii.c97 unsigned long uni = 0; in _icv_iconv() local
114 uni |= (unsigned long)c1; in _icv_iconv()
115 uni |= (unsigned long)c2 << 8; in _icv_iconv()
117 uni |= (unsigned long)c1 << 8; in _icv_iconv()
118 uni |= (unsigned long)c2; in _icv_iconv()
125 if (uni_2_viscii(uni, &ch) == 1) { in _icv_iconv()
H A DUTF-8%tcvn.c98 unsigned long uni = 0; in _icv_iconv() local
106 uni = (unsigned short)*op; in _icv_iconv()
119 uni = temp1; in _icv_iconv()
135 uni = temp1; in _icv_iconv()
153 uni = temp1; in _icv_iconv()
164 if (uni_2_tcvn(uni, &ch) == 1) { in _icv_iconv()
H A DUTF-8%viscii.c112 unsigned long uni = 0; in _icv_iconv() local
221 uni = (unsigned long) ((c1 & ONEBYTE) << 8) + (c2 & ONEBYTE); in _icv_iconv()
222 if (!uni_2_viscii(uni, (unsigned char*)&ch)) { in _icv_iconv()
/illumos-gate/usr/src/lib/iconv_modules/ja/common/
H A DPCK_TO_Unicode.c67 unsigned int uni; /* UTF-32 */ in _icv_iconv() local
96 PUTU(uni, "ASCII"); in _icv_iconv()
99 PUTU(uni, "KANA"); in _icv_iconv()
109 uni = _jfp_tbl_jisx0208_to_ucs2[index]; in _icv_iconv()
110 PUTU(uni, "KANJI"); in _icv_iconv()
124 uni = _jfp_tbl_jisx0212_to_ucs2[index]; in _icv_iconv()
125 PUTU(uni, "SUPKANJI"); in _icv_iconv()
161 PUTU(uni, "IBM"); in _icv_iconv()
174 PUTU(uni, "IBM"); in _icv_iconv()
188 uni = 0xfffd; in _icv_iconv()
[all …]
H A Djapanese.h88 #define PUTUCS2(uni, msg) \ argument
89 if (write_unicode((unsigned int)uni, &op, &oleft, little, msg) \
/illumos-gate/usr/src/uts/common/kiconv/kiconv_ja/
H A Dkiconv_ja.c838 KICONV_JA_PUTU(uni); in _do_kiconv_fr_sjis()
841 KICONV_JA_PUTU(uni); in _do_kiconv_fr_sjis()
858 KICONV_JA_PUTU(uni); in _do_kiconv_fr_sjis()
875 KICONV_JA_PUTU(uni); in _do_kiconv_fr_sjis()
954 uni = 0xfffd; in _do_kiconv_fr_sjis()
955 KICONV_JA_PUTU(uni); in _do_kiconv_fr_sjis()
1155 KICONV_JA_PUTU(uni); in _do_kiconvstr_fr_sjis()
1159 KICONV_JA_PUTU(uni); in _do_kiconvstr_fr_sjis()
1181 KICONV_JA_PUTU(uni); in _do_kiconvstr_fr_sjis()
1207 KICONV_JA_PUTU(uni); in _do_kiconvstr_fr_sjis()
[all …]
/illumos-gate/usr/src/lib/iconv_modules/ko/common/
H A Dutf_to_ojh_sub.c42 unsigned int uni, x, y, z; in _utf8_to_johap82() local
44 uni = unicode.code - 0xAC00; in _utf8_to_johap82()
45 x = uni / 588; in _utf8_to_johap82()
47 y = (uni % 588) / 28; in _utf8_to_johap82()
48 z = (uni % 588) % 28; in _utf8_to_johap82()
H A Dutf_to_njh_sub.c68 unsigned int uni, x, y, z; in _utf8_to_johap92() local
70 uni = unicode.code - 0xAC00; in _utf8_to_johap92()
71 x = uni / 588; in _utf8_to_johap92()
73 y = (uni % 588) / 28; in _utf8_to_johap92()
74 z = (uni % 588) % 28; in _utf8_to_johap92()
/illumos-gate/usr/src/lib/iconv_modules/inc/
H A Dvi_combine.h49 #define ISCOMB_UNI(uni) ((uni)>=0x0300 && (uni)<=0x0323) argument
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dfsys_jfs.c200 uni2ansi (UniChar *uni, char *ansi, int len) in uni2ansi() argument
202 for (; len; len--, uni++) in uni2ansi()
203 *ansi++ = (*uni & 0xff80) ? '?' : *(char *)uni; in uni2ansi()
/illumos-gate/usr/src/grub/grub-0.97/
H A DTHANKS59 Jan Fricke <fricke@uni-greifswald.de>
72 Karsten Scheibler <karsten.scheibler@student.uni-halle.de>
H A DChangeLog987 From Karsten Scheibler <karsten.scheibler@student.uni-halle.de>:
2947 From Jan Fricke <fricke@uni-greifswald.de>:
3014 empty. Reported by Holger Bauer <bauer@itsm.uni-stuttgart.de>.
3134 Volker Augustin <Volker.Augustin@stud.uni-regensburg.de>.
3606 Reported by Jan Fricke <fricke@uni-greifswald.de> and Pixel
/illumos-gate/usr/src/common/crypto/ecc/
H A DTHIRDPARTYLICENSE365 * Lenka Fibikova <fibikova@exp-math.uni-essen.de>, the OpenSSL Project
/illumos-gate/usr/src/data/zoneinfo/
H A Deurope2034 # https://www.astro.uni.torun.pl/~kb/Artykuly/U-PA/Czas2.htm#tth_tAb1
2348 # http://astro.uni-altai.ru/~orion/blog/2011/11/novyie-granitsyi-chasovyih-poyasov-v-sssr/
2362 # http://astro.uni-altai.ru/~orion/blog/2015/05/center-reforma-ischisleniya-vremeni-br-na-territori…
/illumos-gate/usr/src/data/hwdata/
H A Dusb.ids14195 0700 Metrologic MS7120 Barcode Scanner (uni-directional serial mode)
/illumos-gate/usr/src/data/terminfo/
H A Dtermcap.src663 # From Guido Flohr <gufl0000@stud.uni-sb.de>.
H A Dterminfo.src696 # From Guido Flohr <gufl0000@stud.uni-sb.de>.