Searched refs:u8str (Results 1 – 2 of 2) sorted by relevance
520 ssize_t utf8_to_utf16_length(const uint8_t* u8str, size_t u8len) in utf8_to_utf16_length() argument522 const uint8_t* const u8end = u8str + u8len; in utf8_to_utf16_length()523 const uint8_t* u8cur = u8str; in utf8_to_utf16_length()546 char16_t* utf8_to_utf16_no_null_terminator(const uint8_t* u8str, size_t u8len, char16_t* u16str) in utf8_to_utf16_no_null_terminator() argument548 const uint8_t* const u8end = u8str + u8len; in utf8_to_utf16_no_null_terminator()549 const uint8_t* u8cur = u8str; in utf8_to_utf16_no_null_terminator()572 void utf8_to_utf16(const uint8_t* u8str, size_t u8len, char16_t* u16str) { in utf8_to_utf16() argument573 char16_t* end = utf8_to_utf16_no_null_terminator(u8str, u8len, u16str); in utf8_to_utf16()
58 static char16_t* allocFromUTF8(const char* u8str, size_t u8len) in allocFromUTF8() argument62 const uint8_t* u8cur = (const uint8_t*) u8str; in allocFromUTF8()71 u8cur = (const uint8_t*) u8str; in allocFromUTF8()