Lines Matching refs:u8cur
548 const uint8_t* u8cur = u8str; in utf8_to_utf16_length() local
552 while (u8cur < u8end) { in utf8_to_utf16_length()
554 int u8charLen = utf8_codepoint_len(*u8cur); in utf8_to_utf16_length()
555 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8charLen); in utf8_to_utf16_length()
557 u8cur += u8charLen; in utf8_to_utf16_length()
564 if (u8cur != u8end) { in utf8_to_utf16_length()
574 const uint8_t* u8cur = u8str; in utf8_to_utf16_no_null_terminator() local
577 while (u8cur < u8end) { in utf8_to_utf16_no_null_terminator()
578 size_t u8len = utf8_codepoint_len(*u8cur); in utf8_to_utf16_no_null_terminator()
579 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8len); in utf8_to_utf16_no_null_terminator()
592 u8cur += u8len; in utf8_to_utf16_no_null_terminator()
604 const uint8_t* u8cur = src; in utf8_to_utf16_n() local
608 while (u8cur < u8end && u16cur < u16end) { in utf8_to_utf16_n()
609 size_t u8len = utf8_codepoint_len(*u8cur); in utf8_to_utf16_n()
610 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8len); in utf8_to_utf16_n()
627 u8cur += u8len; in utf8_to_utf16_n()