Searched refs:u8str (Results 1 - 2 of 2) sorted by relevance

/system/core/libutils/
H A DUnicode.cpp538 ssize_t utf8_to_utf16_length(const uint8_t* u8str, size_t u8len) argument
540 const uint8_t* const u8end = u8str + u8len;
541 const uint8_t* u8cur = u8str;
564 char16_t* utf8_to_utf16_no_null_terminator(const uint8_t* u8str, size_t u8len, char16_t* u16str) argument
566 const uint8_t* const u8end = u8str + u8len;
567 const uint8_t* u8cur = u8str;
590 void utf8_to_utf16(const uint8_t* u8str, size_t u8len, char16_t* u16str) { argument
591 char16_t* end = utf8_to_utf16_no_null_terminator(u8str, u8len, u16str);
H A DString16.cpp59 static char16_t* allocFromUTF8(const char* u8str, size_t u8len) argument
63 const uint8_t* u8cur = (const uint8_t*) u8str;
72 u8cur = (const uint8_t*) u8str;

Completed in 67 milliseconds