Searched refs:byteMark (Results 1 - 1 of 1) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DConvertUTF.cpp257 const UTF32 byteMark = 0x80; local
303 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
304 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
305 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
327 const UTF32 byteMark = 0x80; local
356 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
357 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
358 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;

Completed in 76 milliseconds