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

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3convertutf.c215 const UTF32 byteMark = 0x80; local
261 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
262 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
263 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
412 const UTF32 byteMark = 0x80; local
441 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
442 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
443 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
/external/google-breakpad/src/common/
H A Dconvert_UTF.c242 const UTF32 byteMark = 0x80; local
288 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
289 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
290 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
435 const UTF32 byteMark = 0x80; local
464 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
465 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
466 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
/external/unicode/
H A DConvertUTF.c224 const UTF32 byteMark = 0x80; local
280 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
281 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
282 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
429 const UTF32 byteMark = 0x80; local
458 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
459 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
460 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
/external/llvm/lib/Support/
H A DConvertUTF.c231 const UTF32 byteMark = 0x80; local
277 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
278 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
279 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
301 const UTF32 byteMark = 0x80; local
330 case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
331 case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
332 case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
/external/clang/lib/Lex/
H A DLiteralSupport.cpp436 const unsigned byteMark = 0x80; local
446 case 4: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
447 case 3: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
448 case 2: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
/external/v8/src/inspector/
H A Dstring-16.cc93 const UChar32 byteMark = 0x80; local
147 *--target = static_cast<char>((ch | byteMark) & byteMask);
150 *--target = static_cast<char>((ch | byteMark) & byteMask);
153 *--target = static_cast<char>((ch | byteMark) & byteMask);

Completed in 201 milliseconds