Lines Matching defs:UTF8
754 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
808 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
812 typedef uint8_t UTF8;
827 // Once the bits are split out into bytes of UTF8, this is a mask OR-ed
829 static const UTF8 firstByteMark[5] = {
836 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
839 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
842 *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
845 *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
1793 llvm::ConvertUTF8toUTF32(reinterpret_cast<llvm::UTF8 const **>(&start),
1794 reinterpret_cast<llvm::UTF8 const *>(begin),
2300 const llvm::UTF8 *ErrorPtrTmp;