HomeSort by: relevance | last modified time | path
    Searched defs:FirstByte (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MsgPack.h 27 namespace FirstByte {
  /src/external/apache2/llvm/dist/llvm/lib/XRay/
FDRRecordProducer.cpp 75 constexpr bool isMetadataIntroducer(uint8_t FirstByte) {
76 return FirstByte & 0x01u;
88 uint8_t FirstByte = E.getU8(&OffsetPtr);
94 if (isMetadataIntroducer(FirstByte)) {
95 auto LoadedType = FirstByte >> 1;
150 uint8_t FirstByte = E.getU8(&OffsetPtr);
157 if (isMetadataIntroducer(FirstByte)) {
158 auto LoadedType = FirstByte >> 1;
FDRTraceWriter.cpp 45 uint8_t FirstByte = (static_cast<uint8_t>(Kind) << 1) | uint8_t{0x01u};
48 OS.write(FirstByte);
  /src/external/apache2/llvm/dist/clang/lib/AST/
FormatString.cpp 304 const char FirstByte = *SB;
309 unsigned NumBytes = llvm::getNumBytesForUTF8(FirstByte);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
JSON.cpp 568 uint8_t FirstByte = 0xC0 | ((Rune & 0x7C0) >> 6);
570 Out.push_back(FirstByte);
573 uint8_t FirstByte = 0xE0 | ((Rune & 0xF000) >> 12);
576 Out.push_back(FirstByte);
580 uint8_t FirstByte = 0xF0 | ((Rune & 0x1F0000) >> 18);
584 Out.push_back(FirstByte);
YAMLParser.cpp 563 uint8_t FirstByte = 0xC0 | ((UnicodeScalarValue & 0x7C0) >> 6);
565 Result.push_back(FirstByte);
568 uint8_t FirstByte = 0xE0 | ((UnicodeScalarValue & 0xF000) >> 12);
571 Result.push_back(FirstByte);
575 uint8_t FirstByte = 0xF0 | ((UnicodeScalarValue & 0x1F0000) >> 18);
579 Result.push_back(FirstByte);
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUISelLowering.cpp 1157 int64_t FirstByte = MFI.getObjectOffset(ClobberedFI);
1158 int64_t LastByte = FirstByte + MFI.getObjectSize(ClobberedFI) - 1;
1176 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) ||
1177 (FirstByte <= InFirstByte && InFirstByte <= LastByte))
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 5431 int64_t FirstByte = MFI.getObjectOffset(ClobberedFI);
5432 int64_t LastByte = FirstByte + MFI.getObjectSize(ClobberedFI) - 1;
5450 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) ||
5451 (FirstByte <= InFirstByte && InFirstByte <= LastByte))

Completed in 35 milliseconds