Searched refs:FirstByte (Results 1 - 11 of 11) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackWriter.cpp23 void Writer::writeNil() { EW.write(FirstByte::Nil); }
25 void Writer::write(bool b) { EW.write(b ? FirstByte::True : FirstByte::False); }
39 EW.write(FirstByte::Int8);
45 EW.write(FirstByte::Int16);
51 EW.write(FirstByte::Int32);
56 EW.write(FirstByte::Int64);
67 EW.write(FirstByte::UInt8);
73 EW.write(FirstByte::UInt16);
79 EW.write(FirstByte
[all...]
H A DMsgPackReader.cpp35 case FirstByte::Nil:
38 case FirstByte::True:
42 case FirstByte::False:
46 case FirstByte::Int8:
49 case FirstByte::Int16:
52 case FirstByte::Int32:
55 case FirstByte::Int64:
58 case FirstByte::UInt8:
61 case FirstByte::UInt16:
64 case FirstByte
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/XRay/
H A DFDRRecordProducer.cpp75 constexpr bool isMetadataIntroducer(uint8_t FirstByte) { argument
76 return FirstByte & 0x01u;
88 uint8_t FirstByte = E.getU8(&OffsetPtr); local
94 if (isMetadataIntroducer(FirstByte)) {
95 auto LoadedType = FirstByte >> 1;
150 uint8_t FirstByte = E.getU8(&OffsetPtr); local
157 if (isMetadataIntroducer(FirstByte)) {
158 auto LoadedType = FirstByte >> 1;
H A DFDRTraceWriter.cpp47 uint8_t FirstByte = (static_cast<uint8_t>(Kind) << 1) | uint8_t{0x01u}; local
50 OS.write(FirstByte);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPack.h27 namespace FirstByte { namespace in namespace:llvm::msgpack
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DSymbolRecord.h207 uint8_t FirstByte = Annotations.front();
210 if ((FirstByte & 0x80) == 0x00)
211 return FirstByte;
219 if ((FirstByte & 0xC0) == 0x80)
220 return ((FirstByte & 0x3F) << 8) | SecondByte;
234 if ((FirstByte & 0xE0) == 0xC0)
235 return ((FirstByte & 0x1F) << 24) | (SecondByte << 16) |
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp411 uint8_t FirstByte = 0xC0 | ((Rune & 0x7C0) >> 6); local
413 Out.push_back(FirstByte);
416 uint8_t FirstByte = 0xE0 | ((Rune & 0xF000) >> 12); local
419 Out.push_back(FirstByte);
423 uint8_t FirstByte = 0xF0 | ((Rune & 0x1F0000) >> 18); local
427 Out.push_back(FirstByte);
H A DYAMLParser.cpp570 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6); local
572 Result.push_back(FirstByte);
575 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12); local
578 Result.push_back(FirstByte);
582 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18); local
586 Result.push_back(FirstByte);
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DFormatString.cpp304 const char FirstByte = *SB; local
309 unsigned NumBytes = llvm::getNumBytesForUTF8(FirstByte);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.cpp1048 int64_t FirstByte = MFI.getObjectOffset(ClobberedFI); local
1049 int64_t LastByte = FirstByte + MFI.getObjectSize(ClobberedFI) - 1;
1067 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) ||
1068 (FirstByte <= InFirstByte && InFirstByte <= LastByte))
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp3876 int64_t FirstByte = MFI.getObjectOffset(ClobberedFI); local
3877 int64_t LastByte = FirstByte + MFI.getObjectSize(ClobberedFI) - 1;
3895 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) ||
3896 (FirstByte <= InFirstByte && InFirstByte <= LastByte))

Completed in 222 milliseconds