/titanic_50/usr/src/lib/iconv_modules/vi/common/ |
H A D | tcvn%UTF-8.c | 101 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() 121 uni = vi_comb_data[unidx].composed[k]; 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() [all …]
|
H A D | viscii%UTF-8.c | 99 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 D | tcvn%UCS-2.c | 109 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 D | viscii%UCS-2.c | 94 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 D | UCS-2%tcvn.c | 97 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 D | UCS-2%viscii.c | 97 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 D | UTF-8%tcvn.c | 98 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 D | UTF-8%viscii.c | 112 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()
|
/titanic_50/usr/src/lib/iconv_modules/ja/common/ |
H A D | PCK_TO_Unicode.c | 67 unsigned int uni; /* UTF-32 */ in _icv_iconv() local 95 uni = _jfp_tbl_jisx0201roman_to_ucs2[ic1]; in _icv_iconv() 96 PUTU(uni, "ASCII"); in _icv_iconv() 98 uni = _jfp_tbl_jisx0201kana_to_ucs2[(ic1 - 0xa1)]; 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() 160 uni = _jfp_tbl_jisx0208_to_ucs2[index]; in _icv_iconv() [all …]
|
H A D | japanese.h | 88 #define PUTUCS2(uni, msg) \ argument 89 if (write_unicode((unsigned int)uni, &op, &oleft, little, msg) \
|
/titanic_50/usr/src/uts/common/kiconv/kiconv_ja/ |
H A D | kiconv_ja.c | 815 uint_t uni; /* UTF-32 */ in _do_kiconv_fr_sjis() local 839 uni = kiconv_ja_jisx0201roman_to_ucs2[ic1]; in _do_kiconv_fr_sjis() 840 KICONV_JA_PUTU(uni); in _do_kiconv_fr_sjis() 842 uni = kiconv_ja_jisx0201kana_to_ucs2[(ic1 - 0xa1)]; in _do_kiconv_fr_sjis() 843 KICONV_JA_PUTU(uni); in _do_kiconv_fr_sjis() 852 KICONV_JA_CNV_JISMS_TO_U2(id, uni, ic1, ic2); in _do_kiconv_fr_sjis() 853 if (uni == KICONV_JA_NODEST) { in _do_kiconv_fr_sjis() 856 uni = kiconv_ja_jisx0208_to_ucs2[index]; in _do_kiconv_fr_sjis() 858 if (uni == KICONV_JA_REPLACE) in _do_kiconv_fr_sjis() 860 KICONV_JA_PUTU(uni); in _do_kiconv_fr_sjis() [all …]
|
/titanic_50/usr/src/lib/iconv_modules/ko/common/ |
H A D | utf_to_ojh_sub.c | 42 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 D | utf_to_njh_sub.c | 68 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()
|
/titanic_50/usr/src/lib/iconv_modules/inc/ |
H A D | vi_combine.h | 49 #define ISCOMB_UNI(uni) ((uni)>=0x0300 && (uni)<=0x0323) argument
|
/titanic_50/usr/src/common/net/wanboot/ |
H A D | auxutil.c | 100 uchar_t *uni = NULL; local 105 if (asc2uni(str, len, &uni, &unilen) == 0) { 107 if (OPENSSL_asc2uni(str, len, &uni, &unilen) == 0) { 117 if (uni[unilen - 1] == '\0' && uni[unilen - 2] == '\0') 124 OPENSSL_free(uni); 128 bmp->data = uni;
|
/titanic_50/usr/src/grub/grub-0.97/stage2/ |
H A D | fsys_jfs.c | 200 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()
|
/titanic_50/usr/src/grub/grub-0.97/ |
H A D | THANKS | 59 Jan Fricke <fricke@uni-greifswald.de> 72 Karsten Scheibler <karsten.scheibler@student.uni-halle.de>
|
H A D | ChangeLog | 987 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
|
/titanic_50/usr/src/lib/libpkg/common/ |
H A D | p12lib.c | 2302 uchar_t *uni = NULL; local 2307 if (asc2uni(str, len, &uni, &unilen) == 0) { 2309 if (OPENSSL_asc2uni(str, len, &uni, &unilen) == 0) { 2319 if (uni[unilen - 1] == '\0' && uni[unilen - 2] == '\0') 2326 OPENSSL_free(uni); 2330 bmp->data = uni;
|
/titanic_50/usr/src/cmd/ssh/doc/ |
H A D | ChangeLog | 40 <markus.friedl@informatik.uni-erlangen.de> 1057 - Xauth fix from Markus Friedl <markus.friedl@informatik.uni-erlangen.de> 1533 <O.Stahl@lsw.uni-heidelberg.de> 1666 - Applied pty cleanup patch from markus.friedl@informatik.uni-erlangen.de 1672 markus.friedl@informatik.uni-erlangen.de 1937 <ma@dt.e-technik.uni-dortmund.de 2097 patch from Markus Friedl <markus.friedl@informatik.uni-erlangen.de>
|
/titanic_50/usr/src/common/crypto/ecc/ |
H A D | THIRDPARTYLICENSE | 365 * Lenka Fibikova <fibikova@exp-math.uni-essen.de>, the OpenSSL Project
|
/titanic_50/usr/src/data/zoneinfo/ |
H A D | europe | 2173 # https://www.astro.uni.torun.pl/~kb/Artykuly/U-PA/Czas2.htm#tth_tAb1 2481 # http://astro.uni-altai.ru/~orion/blog/2011/11/novyie-granitsyi-chasovyih-poyasov-v-sssr/ 2495 # http://astro.uni-altai.ru/~orion/blog/2015/05/center-reforma-ischisleniya-vremeni-br-na-territori…
|
/titanic_50/usr/src/data/hwdata/ |
H A D | usb.ids | 13068 0700 Metrologic MS7120 Barcode Scanner (uni-directional serial mode)
|
/titanic_50/usr/src/cmd/terminfo/ |
H A D | termcap.src | 663 # From Guido Flohr <gufl0000@stud.uni-sb.de>.
|
H A D | terminfo.src | 696 # From Guido Flohr <gufl0000@stud.uni-sb.de>.
|