| /freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | YAML.h | 64 class BinaryRef { 65 friend bool operator==(const BinaryRef &LHS, const BinaryRef &RHS); 75 BinaryRef() = default; 76 BinaryRef(ArrayRef<uint8_t> Data) : Data(Data), DataIsHexString(false) {} in BinaryRef() function 77 BinaryRef(StringRef Data) : Data(arrayRefFromStringRef(Data)) {} in BinaryRef() function 99 inline bool operator==(const BinaryRef &LHS, const BinaryRef &RHS) { 107 template <> struct ScalarTraits<BinaryRef> { 108 LLVM_ABI static void output(const BinaryRef &, void *, raw_ostream &); 109 LLVM_ABI static StringRef input(StringRef, void *, BinaryRef &);
|
| H A D | MinidumpYAML.h | 80 yaml::BinaryRef CvRecord; 81 yaml::BinaryRef MiscRecord; 90 yaml::BinaryRef Stack; 91 yaml::BinaryRef Context; 100 yaml::BinaryRef Content; 109 yaml::BinaryRef Content; 129 yaml::BinaryRef ThreadContext; 168 yaml::BinaryRef Content; 261 template <> struct MappingContextTraits<minidump::MemoryDescriptor, BinaryRef> { 263 BinaryRef &Content); [all …]
|
| H A D | ArchiveYAML.h | 48 std::optional<yaml::BinaryRef> Content; 54 std::optional<yaml::BinaryRef> Content;
|
| H A D | CodeViewYAMLTypeHashing.h | 39 yaml::BinaryRef Hash;
|
| H A D | WasmYAML.h | 71 yaml::BinaryRef Body; 112 yaml::BinaryRef Body; 129 yaml::BinaryRef Content; 205 yaml::BinaryRef Payload;
|
| H A D | OffloadYAML.h | 37 std::optional<yaml::BinaryRef> Content;
|
| H A D | COFFYAML.h | 72 yaml::BinaryRef Binary; 83 yaml::BinaryRef SectionData;
|
| H A D | XCOFFYAML.h | 83 yaml::BinaryRef SectionData; 210 std::optional<yaml::BinaryRef> RawContent;
|
| H A D | MachOYAML.h | 58 std::optional<llvm::yaml::BinaryRef> content; 145 std::optional<llvm::yaml::BinaryRef> RawLinkEditSegment;
|
| H A D | ELFYAML.h | 220 yaml::BinaryRef Desc; 274 std::optional<yaml::BinaryRef> Content; 325 std::optional<yaml::BinaryRef> Pattern;
|
| H A D | DWARFYAML.h | 223 std::optional<yaml::BinaryRef> Content;
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | YAML.cpp | 22 void yaml::ScalarTraits<yaml::BinaryRef>::output( in output() 23 const yaml::BinaryRef &Val, void *, raw_ostream &Out) { in output() 27 StringRef yaml::ScalarTraits<yaml::BinaryRef>::input(StringRef Scalar, void *, in input() 28 yaml::BinaryRef &Val) { in input() 35 Val = yaml::BinaryRef(Scalar); in input() 39 void yaml::BinaryRef::writeAsBinary(raw_ostream &OS, uint64_t N) const { in writeAsBinary() 54 void yaml::BinaryRef::writeAsHex(raw_ostream &OS) const { in writeAsHex()
|
| H A D | CodeViewYAMLTypeHashing.cpp | 35 ScalarTraits<BinaryRef>::output(GH.Hash, Ctx, OS); in output() 40 return ScalarTraits<BinaryRef>::input(Scalar, Ctx, GH.Hash); in input()
|
| H A D | MinidumpYAML.cpp | 264 MappingContextTraits<MemoryDescriptor_64, yaml::BinaryRef>::mapping( in mapping() 294 IO.mapOptional("Misc Record", M.MiscRecord, yaml::BinaryRef()); in mapping() 312 MappingContextTraits<MemoryDescriptor, yaml::BinaryRef>::mapping( in mapping() 374 void yaml::MappingContextTraits<MemoryDescriptor, yaml::BinaryRef>::mapping( in mapping() 375 IO &IO, MemoryDescriptor &Memory, BinaryRef &Content) { in mapping() 380 void yaml::MappingContextTraits<MemoryDescriptor_64, yaml::BinaryRef>::mapping( in mapping() 381 IO &IO, MemoryDescriptor_64 &Memory, BinaryRef &Content) { in mapping()
|
| H A D | MinidumpEmitter.cpp | 47 size_t allocateBytes(yaml::BinaryRef Data) { in allocateBytes() 117 static LocationDescriptor layout(BlobAllocator &File, yaml::BinaryRef Data) { in layout()
|
| H A D | CodeViewYAMLSymbols.cpp | 303 yaml::BinaryRef Binary; in map() 305 Binary = yaml::BinaryRef(Data); in map()
|
| H A D | COFFEmitter.cpp | 162 static yaml::BinaryRef
|
| H A D | MachOEmitter.cpp | 346 yaml::BinaryRef Content = *Sec.content; in writeSectionData()
|
| H A D | ELFEmitter.cpp | 96 void writeAsBinary(const yaml::BinaryRef &Bin, uint64_t N = UINT64_MAX) { in writeAsBinary() 719 const std::optional<yaml::BinaryRef> &Content, in writeContent()
|
| H A D | ELFYAML.cpp | 1433 Section.Content = yaml::BinaryRef(*Section.ContentBuf); in sectionMapping()
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/Offloading/ |
| H A D | Utility.cpp | 390 yaml::BinaryRef(Version), in containerizeOpenMPSPIRVImage() 408 yaml::BinaryRef(AuxInfo), in containerizeOpenMPSPIRVImage() 413 yaml::BinaryRef(ImgCount), in containerizeOpenMPSPIRVImage() 449 llvm::yaml::BinaryRef(arrayRefFromStringRef(Img->getBuffer())); in containerizeOpenMPSPIRVImage()
|