Home
last modified time | relevance | path

Searched refs:FirstByte (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Support/
DYAMLParser.cpp578 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); in encodeUTF8() local
580 Result.push_back(FirstByte); in encodeUTF8()
583 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); in encodeUTF8() local
586 Result.push_back(FirstByte); in encodeUTF8()
590 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); in encodeUTF8() local
594 Result.push_back(FirstByte); in encodeUTF8()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp2814 int64_t FirstByte = MFI->getObjectOffset(ClobberedFI); in addTokenForArgument() local
2815 int64_t LastByte = FirstByte + MFI->getObjectSize(ClobberedFI) - 1; in addTokenForArgument()
2833 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) || in addTokenForArgument()
2834 (FirstByte <= InFirstByte && InFirstByte <= LastByte)) in addTokenForArgument()