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

/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DConvertUTF.cpp256 const UTF32 byteMask = 0xBF; 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;
326 const UTF32 byteMask = 0xBF; 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 82 milliseconds