Home | History | Annotate | Download | only in dist

Lines Matching refs:ud

51 utf8_has_zwj(const struct utf8_data *ud)
53 if (ud->size < 3)
55 return (memcmp(ud->data + ud->size - 3, "\342\200\215", 3) == 0);
60 utf8_is_zwj(const struct utf8_data *ud)
62 if (ud->size != 3)
64 return (memcmp(ud->data, "\342\200\215", 3) == 0);
69 utf8_is_vs(const struct utf8_data *ud)
71 if (ud->size != 3)
73 return (memcmp(ud->data, "\357\270\217", 3) == 0);
78 utf8_is_hangul_filler(const struct utf8_data *ud)
80 if (ud->size != 3)
82 return (memcmp(ud->data, "\343\205\244", 3) == 0);
262 hanguljamo_check_state(const struct utf8_data *p_ud, const struct utf8_data *ud)
266 if (ud->size != 3)
269 switch (hanguljamo_get_class(ud->data)) {