Lines Matching refs:uchar_t

113 	(s)[(i)] = (uchar_t)(0xE0U | ((uint32_t)(b) & 0xF000U) >> 12); \
114 (s)[(j)] = (uchar_t)(0x80U | ((uint32_t)(b) & 0x0FC0U) >> 6); \
115 (s)[(k)] = (uchar_t)(0x80U | ((uint32_t)(b) & 0x003FU));
162 #define U8_ISASCII(c) (((uchar_t)(c)) < 0x80U)
339 uchar_t *ib; in u8_validate()
340 uchar_t *ibtail; in u8_validate()
341 uchar_t **p; in u8_validate()
342 uchar_t *s1; in u8_validate()
343 uchar_t *s2; in u8_validate()
344 uchar_t f; in u8_validate()
356 ib = (uchar_t *)u8str; in u8_validate()
424 for (p = (uchar_t **)list, i = 0; p[i]; i++) { in u8_validate()
462 do_case_conv(int uv, uchar_t *u8s, uchar_t *s, int sz, boolean_t is_it_toupper) in do_case_conv()
572 do_case_compare(size_t uv, uchar_t *s1, uchar_t *s2, size_t n1, in do_case_compare()
581 uchar_t u8s1[U8_MB_CUR_MAX + 1]; in do_case_compare()
582 uchar_t u8s2[U8_MB_CUR_MAX + 1]; in do_case_compare()
696 static uchar_t
697 combining_class(size_t uv, uchar_t *s, size_t sz) in combining_class()
750 do_decomp(size_t uv, uchar_t *u8s, uchar_t *s, int sz, in do_decomp()
974 static uchar_t *
975 find_composition_start(size_t uv, uchar_t *s, size_t sz) in find_composition_start()
1036 return ((uchar_t *)&(u8_composition_final_tbl[uv][b3_base + start_id])); in find_composition_start()
1044 blocked(uchar_t *comb_class, size_t last) in blocked()
1046 uchar_t my_comb_class; in blocked()
1066 do_composition(size_t uv, uchar_t *s, uchar_t *comb_class, uchar_t *start, in do_composition()
1067 uchar_t *disp, size_t last, uchar_t **os, uchar_t *oslast) in do_composition()
1069 uchar_t t[U8_STREAM_SAFE_TEXT_MAX + 1]; in do_composition()
1070 uchar_t tc[U8_MB_CUR_MAX] = { '\0' }; in do_composition()
1073 uchar_t *p; in do_composition()
1074 uchar_t *saved_p; in do_composition()
1075 uchar_t *q; in do_composition()
1392 collect_a_seq(size_t uv, uchar_t *u8s, uchar_t **source, uchar_t *slast, in collect_a_seq()
1400 uchar_t *s; in collect_a_seq()
1407 uchar_t comb_class[U8_MAX_CHARS_A_SEQ]; in collect_a_seq()
1408 uchar_t disp[U8_MAX_CHARS_A_SEQ]; in collect_a_seq()
1409 uchar_t start[U8_MAX_CHARS_A_SEQ]; in collect_a_seq()
1410 uchar_t u8t[U8_MB_CUR_MAX] = { '\0' }; in collect_a_seq()
1411 uchar_t uts[U8_STREAM_SAFE_TEXT_MAX + 1]; in collect_a_seq()
1412 uchar_t tc; in collect_a_seq()
1740 do_norm_compare(size_t uv, uchar_t *s1, uchar_t *s2, size_t n1, size_t n2, in do_norm_compare()
1746 uchar_t u8s1[U8_STREAM_SAFE_TEXT_MAX + 1]; in do_norm_compare()
1747 uchar_t u8s2[U8_STREAM_SAFE_TEXT_MAX + 1]; in do_norm_compare()
1748 uchar_t *s1last; in do_norm_compare()
1749 uchar_t *s2last; in do_norm_compare()
1928 return (do_case_compare(uv, (uchar_t *)s1, (uchar_t *)s2, in u8_strcmp()
1933 return (do_case_compare(uv, (uchar_t *)s1, (uchar_t *)s2, in u8_strcmp()
1938 return (do_norm_compare(uv, (uchar_t *)s1, (uchar_t *)s2, n1, n2, in u8_strcmp()
1948 uchar_t *ib; in u8_textprep_str()
1949 uchar_t *ibtail; in u8_textprep_str()
1950 uchar_t *ob; in u8_textprep_str()
1951 uchar_t *obtail; in u8_textprep_str()
1962 uchar_t u8s[U8_STREAM_SAFE_TEXT_MAX + 1]; in u8_textprep_str()
1993 ib = (uchar_t *)inarray; in u8_textprep_str()
1994 ob = (uchar_t *)outarray; in u8_textprep_str()