Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A DYAMLParser.cpp524 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); in encodeUTF8() local
526 Result.push_back(FirstByte); in encodeUTF8()
529 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); in encodeUTF8() local
532 Result.push_back(FirstByte); in encodeUTF8()
536 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); in encodeUTF8() local
540 Result.push_back(FirstByte); in encodeUTF8()
/minix3/external/bsd/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2457 int64_t FirstByte = MFI->getObjectOffset(ClobberedFI); in addTokenForArgument() local
2458 int64_t LastByte = FirstByte + MFI->getObjectSize(ClobberedFI) - 1; in addTokenForArgument()
2476 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) || in addTokenForArgument()
2477 (FirstByte <= InFirstByte && InFirstByte <= LastByte)) in addTokenForArgument()