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
516
uint8_t
FirstByte
= 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6);
518
Result.push_back(
FirstByte
);
521
uint8_t
FirstByte
= 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12);
524
Result.push_back(
FirstByte
);
528
uint8_t
FirstByte
= 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18);
532
Result.push_back(
FirstByte
);
[
all
...]
/external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp
[
all
...]
Completed in 33 milliseconds