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

/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DConvertUTF.c230 const UTF32 byteMark = 0x80; local
276 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
277 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
278 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
300 const UTF32 byteMark = 0x80; local
329 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
330 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
331 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;

Completed in 48 milliseconds