Searched defs:u8cur (Results 1 - 2 of 2) sorted by relevance

/system/core/libutils/
H A DString16.cpp63 const uint8_t* u8cur = (const uint8_t*) u8str; local
65 const ssize_t u16len = utf8_to_utf16_length(u8cur, u8len);
72 u8cur = (const uint8_t*) u8str;
75 utf8_to_utf16(u8cur, u8len, u16str);
H A DUnicode.cpp541 const uint8_t* u8cur = u8str; local
545 while (u8cur < u8end) {
547 int u8charLen = utf8_codepoint_len(*u8cur);
548 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8charLen);
550 u8cur += u8charLen;
557 if (u8cur != u8end) {
567 const uint8_t* u8cur = u8str; local
570 while (u8cur < u8end) {
571 size_t u8len = utf8_codepoint_len(*u8cur);
572 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8le
597 const uint8_t* u8cur = src; local
[all...]

Completed in 176 milliseconds