Lines Matching full:utf32
140 char32_t utf32 = first_char;
145 utf32 = (utf32 << 6) + (*cur++ & 0x3F);
148 utf32 &= ~(to_ignore_mask << (6 * (num_to_read - 1)));
151 return static_cast<int32_t>(utf32);
365 char32_t utf32;
369 utf32 = (*cur_utf16++ - 0xD800) << 10;
370 utf32 |= *cur_utf16++ - 0xDC00;
371 utf32 += 0x10000;
373 utf32 = (char32_t) *cur_utf16++;
375 const size_t len = utf32_codepoint_utf8_length(utf32);
377 utf32_codepoint_to_utf8((uint8_t*)cur, utf32, len);
407 char32_t utf32 = 0;
415 utf32 = (utf32 << 6) + (*cur++ & 0x3F);
422 utf32 |= ((~to_ignore_mask) & first_char) << (6 * (num_to_read - 1));
423 if (utf32 > kUnicodeMaxCodepoint) {
581 // Convert the UTF32 codepoint to one or more UTF16 codepoints
612 // Convert the UTF32 codepoint to one or more UTF16 codepoints