Lines Matching refs:codepoint
555 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8charLen); in utf8_to_utf16_length() local
556 if (codepoint > 0xFFFF) u16measuredLen++; // this will be a surrogate pair in utf16 in utf8_to_utf16_length()
579 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8len); in utf8_to_utf16_no_null_terminator() local
582 if (codepoint <= 0xFFFF) { in utf8_to_utf16_no_null_terminator()
584 *u16cur++ = (char16_t) codepoint; in utf8_to_utf16_no_null_terminator()
587 codepoint = codepoint - 0x10000; in utf8_to_utf16_no_null_terminator()
588 *u16cur++ = (char16_t) ((codepoint >> 10) + 0xD800); in utf8_to_utf16_no_null_terminator()
589 *u16cur++ = (char16_t) ((codepoint & 0x3FF) + 0xDC00); in utf8_to_utf16_no_null_terminator()
610 uint32_t codepoint = utf8_to_utf32_codepoint(u8cur, u8len); in utf8_to_utf16_n() local
613 if (codepoint <= 0xFFFF) { in utf8_to_utf16_n()
615 *u16cur++ = (char16_t) codepoint; in utf8_to_utf16_n()
618 codepoint = codepoint - 0x10000; in utf8_to_utf16_n()
619 *u16cur++ = (char16_t) ((codepoint >> 10) + 0xD800); in utf8_to_utf16_n()
624 *u16cur++ = (char16_t) ((codepoint & 0x3FF) + 0xDC00); in utf8_to_utf16_n()