Searched refs:utf8Bytes (Results 1 – 1 of 1) sorted by relevance
38 int32_t u32CharToUTF8Bytes(uint32_t u32char, uint8_t utf8Bytes[kMaxUTF8BytesPerChar]);405 uint8_t utf8Bytes[kMaxUTF8BytesPerChar]; in utf8_normalizeOptCaseFoldToUTF8_internal() local412 int32_t idx, utf8Len = u32CharToUTF8Bytes((uint32_t)*bufPtr++, utf8Bytes); in utf8_normalizeOptCaseFoldToUTF8_internal()417 *ustrCur++ = (char)utf8Bytes[idx]; in utf8_normalizeOptCaseFoldToUTF8_internal()757 u32CharToUTF8Bytes(uint32_t u32char, uint8_t utf8Bytes[kMaxUTF8BytesPerChar]) in u32CharToUTF8Bytes()761 utf8Bytes[idx++] = (uint8_t)u32char; in u32CharToUTF8Bytes()764 utf8Bytes[idx++] = (uint8_t)((u32char >> 6) | 0xC0); in u32CharToUTF8Bytes()767 utf8Bytes[idx++] = (uint8_t)((u32char >> 12) | 0xE0); in u32CharToUTF8Bytes()769 utf8Bytes[idx++] = (uint8_t)((u32char >> 18) | 0xF0); in u32CharToUTF8Bytes()770 utf8Bytes[idx++] = (uint8_t)(((u32char >> 12) & 0x3F) | 0x80); in u32CharToUTF8Bytes()[all …]