Home
last modified time | relevance | path

Searched refs:u8len (Results 1 – 2 of 2) sorted by relevance

/system/core/libutils/
DUnicode.cpp538 ssize_t utf8_to_utf16_length(const uint8_t* u8str, size_t u8len) in utf8_to_utf16_length() argument
540 const uint8_t* const u8end = u8str + u8len; in utf8_to_utf16_length()
564 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() argument
566 const uint8_t* const u8end = u8str + u8len; in utf8_to_utf16_no_null_terminator()
571 size_t u8len = utf8_codepoint_len(*u8cur); in utf8_to_utf16_no_null_terminator() local
572 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8len); in utf8_to_utf16_no_null_terminator()
585 u8cur += u8len; in utf8_to_utf16_no_null_terminator()
590 void utf8_to_utf16(const uint8_t* u8str, size_t u8len, char16_t* u16str) { in utf8_to_utf16() argument
591 char16_t* end = utf8_to_utf16_no_null_terminator(u8str, u8len, u16str); in utf8_to_utf16()
602 size_t u8len = utf8_codepoint_len(*u8cur); in utf8_to_utf16_n() local
[all …]
DString16.cpp59 static char16_t* allocFromUTF8(const char* u8str, size_t u8len) in allocFromUTF8() argument
61 if (u8len == 0) return getEmptyString(); in allocFromUTF8()
65 const ssize_t u16len = utf8_to_utf16_length(u8cur, u8len); in allocFromUTF8()
75 utf8_to_utf16(u8cur, u8len, u16str); in allocFromUTF8()