Lines Matching refs:ucs4_t
88 register ucs4_t in, in utf_16_convert_from_ucs()
186 static ucs4_t
195 ucs4_t res; in utf_16_convert_to_ucs()
200 return (ucs4_t)ICONV_CES_BAD_SEQUENCE; in utf_16_convert_to_ucs()
216 return (ucs4_t)ICONV_CES_BAD_SEQUENCE; in utf_16_convert_to_ucs()
229 return (ucs4_t)ICONV_CES_INVALID_CHARACTER; in utf_16_convert_to_ucs()
230 res = (ucs4_t)w1; in utf_16_convert_to_ucs()
236 return (ucs4_t)ICONV_CES_BAD_SEQUENCE; in utf_16_convert_to_ucs()
240 return (ucs4_t)ICONV_CES_INVALID_CHARACTER; in utf_16_convert_to_ucs()
251 return (ucs4_t)ICONV_CES_INVALID_CHARACTER; in utf_16_convert_to_ucs()
253 res = (ucs4_t)(w2 & 0x03FF) | ((ucs4_t)(w1 & 0x03FF) << 10); in utf_16_convert_to_ucs()