OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FirstByte
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Support/
YAMLParser.cpp
522
uint8_t
FirstByte
= 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6);
524
Result.push_back(
FirstByte
);
527
uint8_t
FirstByte
= 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12);
530
Result.push_back(
FirstByte
);
534
uint8_t
FirstByte
= 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18);
538
Result.push_back(
FirstByte
);
[
all
...]
/external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp
[
all
...]
Completed in 102 milliseconds