Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DConvertUTF.cpp231 const UTF32 byteMark = 0x80; in ConvertUTF16toUTF8() local
277 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF16toUTF8()
278 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF16toUTF8()
279 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF16toUTF8()
301 const UTF32 byteMark = 0x80; in ConvertUTF32toUTF8() local
330 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF32toUTF8()
331 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF32toUTF8()
332 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF32toUTF8()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DConvertUTF.cpp257 const UTF32 byteMark = 0x80; in ConvertUTF16toUTF8() local
303 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF16toUTF8()
304 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF16toUTF8()
305 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF16toUTF8()
327 const UTF32 byteMark = 0x80; in ConvertUTF32toUTF8() local
356 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF32toUTF8()
357 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF32toUTF8()
358 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6; in ConvertUTF32toUTF8()
/third_party/node/deps/v8/src/inspector/
H A Dv8-string-conversions.cc59 const UChar32 byteMark = 0x80; in convertUTF16ToUTF8() local
113 *--target = static_cast<char>((ch | byteMark) & byteMask); in convertUTF16ToUTF8()
117 *--target = static_cast<char>((ch | byteMark) & byteMask); in convertUTF16ToUTF8()
121 *--target = static_cast<char>((ch | byteMark) & byteMask); in convertUTF16ToUTF8()

Completed in 4 milliseconds