Searched refs:utf8proc_uint8_t (Results 1 – 2 of 2) sorted by relevance
/third_party/ejdb/src/util/ |
D | utf8proc.c | 117 const utf8proc_uint8_t *str, utf8proc_ssize_t strlen, utf8proc_int32_t *dst in utf8proc_iterate() 120 const utf8proc_uint8_t *end; in utf8proc_iterate() 182 UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_encode_char(utf8proc_int32_t uc, utf8proc_uint8_t *dst… in utf8proc_encode_char() 186 dst[0] = (utf8proc_uint8_t) uc; in utf8proc_encode_char() 189 dst[0] = (utf8proc_uint8_t) (0xC0 + (uc >> 6)); in utf8proc_encode_char() 190 dst[1] = (utf8proc_uint8_t) (0x80 + (uc & 0x3F)); in utf8proc_encode_char() 195 dst[0] = (utf8proc_uint8_t) (0xE0 + (uc >> 12)); in utf8proc_encode_char() 196 dst[1] = (utf8proc_uint8_t) (0x80 + ((uc >> 6) & 0x3F)); in utf8proc_encode_char() 197 dst[2] = (utf8proc_uint8_t) (0x80 + (uc & 0x3F)); in utf8proc_encode_char() 200 dst[0] = (utf8proc_uint8_t) (0xF0 + (uc >> 18)); in utf8proc_encode_char() [all …]
|
D | utf8proc.h | 87 typedef unsigned char utf8proc_uint8_t; typedef 115 typedef uint8_t utf8proc_uint8_t; typedef 433 const utf8proc_uint8_t *str, 454 …DLLEXPORT utf8proc_ssize_t utf8proc_encode_char(utf8proc_int32_t codepoint, utf8proc_uint8_t *dst); 521 const utf8proc_uint8_t *str, utf8proc_ssize_t strlen, 532 const utf8proc_uint8_t *str, utf8proc_ssize_t strlen, 687 …const utf8proc_uint8_t *str, utf8proc_ssize_t strlen, utf8proc_uint8_t **dstptr, utf8proc_option_t… 697 …const utf8proc_uint8_t *str, utf8proc_ssize_t strlen, utf8proc_uint8_t **dstptr, utf8proc_option_t… 710 UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFD(const utf8proc_uint8_t *str); 713 UTF8PROC_DLLEXPORT utf8proc_uint8_t *utf8proc_NFC(const utf8proc_uint8_t *str); [all …]
|