HomeSort by relevance Sort by last modified time
    Searched refs:byteMark (Results 1 - 6 of 6) sorted by null

  /external/antlr/antlr-3.4/runtime/C/src/
antlr3convertutf.c 215 const UTF32 byteMark = 0x80;
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;
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/
convert_UTF.c 242 const UTF32 byteMark = 0x80;
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;
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/llvm/lib/Support/
ConvertUTF.c 231 const UTF32 byteMark = 0x80;
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;
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/swiftshader/third_party/llvm-subzero/lib/Support/
ConvertUTF.cpp 231 const UTF32 byteMark = 0x80;
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;
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/unicode/
ConvertUTF.c 224 const UTF32 byteMark = 0x80;
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;
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/v8/src/inspector/
string-16.cc 90 const UChar32 byteMark = 0x80;
144 *--target = static_cast<char>((ch | byteMark) & byteMask);
147 *--target = static_cast<char>((ch | byteMark) & byteMask);
150 *--target = static_cast<char>((ch | byteMark) & byteMask);

Completed in 118 milliseconds