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

  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/
UTF8.cpp 139 const UChar32 byteMark = 0x80;
158 *--target = (char)((ch | byteMark) & byteMask);
181 const UChar32 byteMark = 0x80;
233 case 4: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
234 case 3: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
235 case 2: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
  /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 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;

Completed in 344 milliseconds