Searched refs:firstByteMark (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DUTF8.cpp126 static const unsigned char firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC }; member in namespace:WTF::Unicode
161 *--target = (char)(ch | firstByteMark[bytesToWrite]);
236 case 1: *--target = (char)(ch | firstByteMark[bytesToWrite]);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3convertutf.c191 static const UTF8 firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC }; variable
264 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
444 case 1: *--target = (UTF8) (ch | firstByteMark[bytesToWrite]);
/external/llvm/lib/Support/
H A DConvertUTF.c103 static const UTF8 firstByteMark[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC }; variable
280 case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
333 case 1: *--target = (UTF8) (ch | firstByteMark[bytesToWrite]);

Completed in 2282 milliseconds