Home
last modified time | relevance | path

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

/system/core/libutils/
DUnicode.cpp488 const uint8_t* u8cur = u8str; in utf8_to_utf16_length() local
492 while (u8cur < u8end) { in utf8_to_utf16_length()
494 int u8charLen = utf8_codepoint_len(*u8cur); in utf8_to_utf16_length()
502 if (u8cur + u8charLen - 1 >= u8end) { in utf8_to_utf16_length()
509 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8charLen); in utf8_to_utf16_length()
511 u8cur += u8charLen; in utf8_to_utf16_length()
518 if (u8cur != u8end) { in utf8_to_utf16_length()
541 const uint8_t* u8cur = src; in utf8_to_utf16_no_null_terminator() local
545 while (u8cur < u8end && u16cur < u16end) { in utf8_to_utf16_no_null_terminator()
546 size_t u8len = utf8_codepoint_len(*u8cur); in utf8_to_utf16_no_null_terminator()
[all …]
DString16.cpp45 const uint8_t* u8cur = (const uint8_t*) u8str; in allocFromUTF8() local
47 const ssize_t u16len = utf8_to_utf16_length(u8cur, u8len); in allocFromUTF8()
54 u8cur = (const uint8_t*) u8str; in allocFromUTF8()
57 utf8_to_utf16(u8cur, u8len, u16str, ((size_t) u16len) + 1); in allocFromUTF8()