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

  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/
UTF8.cpp 126 static const unsigned char firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
161 *--target = (char)(ch | firstByteMark[bytesToWrite]);
236 case 1: *--target = (char)(ch | firstByteMark[bytesToWrite]);
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3convertutf.c 191 static const UTF8 firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
264 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
444 case 1: *--target = (UTF8) (ch | firstByteMark[bytesToWrite]);
  /external/llvm/lib/Support/
ConvertUTF.c 103 static const UTF8 firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
280 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
333 case 1: *--target = (UTF8) (ch | firstByteMark[bytesToWrite]);

Completed in 75 milliseconds