OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:byteMark
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/Basic/
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/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 53 milliseconds