Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DYAMLParser.cpp525 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); in encodeUTF8() local
527 Result.push_back(FirstByte); in encodeUTF8()
530 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); in encodeUTF8() local
533 Result.push_back(FirstByte); in encodeUTF8()
537 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); in encodeUTF8() local
541 Result.push_back(FirstByte); in encodeUTF8()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.cpp2495 int64_t FirstByte = MFI->getObjectOffset(ClobberedFI); in addTokenForArgument() local
2496 int64_t LastByte = FirstByte + MFI->getObjectSize(ClobberedFI) - 1; in addTokenForArgument()
2514 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) || in addTokenForArgument()
2515 (FirstByte <= InFirstByte && InFirstByte <= LastByte)) in addTokenForArgument()