Home
last modified time | relevance | path

Searched refs:KICONV_JA_NPUT (Results 1 – 2 of 2) sorted by relevance

/titanic_41/usr/src/uts/common/kiconv/kiconv_ja/
H A Dkiconv_ja.c244 KICONV_JA_NPUT((uchar_t)(u32)); in write_unicode()
247 KICONV_JA_NPUT((uchar_t)((((u32)>>6) & 0x1f) | 0xc0)); in write_unicode()
248 KICONV_JA_NPUT((uchar_t)(((u32) & 0x3f) | 0x80)); in write_unicode()
253 KICONV_JA_NPUT((uchar_t)((((u32)>>12) & 0x0f) | 0xe0)); in write_unicode()
254 KICONV_JA_NPUT((uchar_t)((((u32)>>6) & 0x3f) | 0x80)); in write_unicode()
255 KICONV_JA_NPUT((uchar_t)(((u32) & 0x3f) | 0x80)); in write_unicode()
258 KICONV_JA_NPUT((uchar_t)((((u32)>>18) & 0x07) | 0xf0)); in write_unicode()
259 KICONV_JA_NPUT((uchar_t)((((u32)>>12) & 0x3f) | 0x80)); in write_unicode()
260 KICONV_JA_NPUT((uchar_t)((((u32)>>6) & 0x3f) | 0x80)); in write_unicode()
261 KICONV_JA_NPUT((uchar_t)(((u32) & 0x3f) | 0x80)); in write_unicode()
[all …]
/titanic_41/usr/src/uts/common/sys/
H A Dkiconv_ja.h89 #define KICONV_JA_NPUT(c) \ macro