HomeSort by relevance Sort by last modified time
    Searched refs:byteMark (Results 1 - 3 of 3) 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/llvm/lib/Support/
ConvertUTF.c 230 const UTF32 byteMark = 0x80;
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;
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;
  /external/webkit/Source/JavaScriptCore/wtf/unicode/
UTF8.cpp 139 const UChar32 byteMark = 0x80;
191 case 4: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
192 case 3: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
193 case 2: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;

Completed in 782 milliseconds