Searched refs:BinaryRef (Results 1 – 20 of 20) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | YAML.h | 63 class BinaryRef { 64 friend bool operator==(const BinaryRef &LHS, const BinaryRef &RHS); 74 BinaryRef() = default; 75 BinaryRef(ArrayRef<uint8_t> Data) : Data(Data), DataIsHexString(false) {} in BinaryRef() function 76 BinaryRef(StringRef Data) : Data(arrayRefFromStringRef(Data)) {} in BinaryRef() function 98 inline bool operator==(const BinaryRef &LHS, const BinaryRef &RHS) { 106 template <> struct ScalarTraits<BinaryRef> { 107 static void output(const BinaryRef &, void *, raw_ostream &); 108 static StringRef input(StringRef, void *, BinaryRef &);
|
H A D | MinidumpYAML.h | 79 yaml::BinaryRef CvRecord; 80 yaml::BinaryRef MiscRecord; 89 yaml::BinaryRef Stack; 90 yaml::BinaryRef Context; 99 yaml::BinaryRef Content; 110 yaml::BinaryRef ThreadContext; 149 yaml::BinaryRef Content; 242 template <> struct MappingContextTraits<minidump::MemoryDescriptor, BinaryRef> { 244 BinaryRef &Content);
|
H A D | ArchiveYAML.h | 48 std::optional<yaml::BinaryRef> Content; 54 std::optional<yaml::BinaryRef> Content;
|
H A D | WasmYAML.h | 70 yaml::BinaryRef Body; 111 yaml::BinaryRef Body; 128 yaml::BinaryRef Content; 204 yaml::BinaryRef Payload;
|
H A D | CodeViewYAMLTypeHashing.h | 39 yaml::BinaryRef Hash;
|
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 | MachOYAML.h | 58 std::optional<llvm::yaml::BinaryRef> content; 145 std::optional<llvm::yaml::BinaryRef> RawLinkEditSegment;
|
H A D | XCOFFYAML.h | 83 yaml::BinaryRef SectionData; 210 std::optional<yaml::BinaryRef> RawContent;
|
H A D | ELFYAML.h | 205 yaml::BinaryRef Desc; 259 std::optional<yaml::BinaryRef> Content; 310 std::optional<yaml::BinaryRef> Pattern;
|
H A D | DWARFYAML.h | 219 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 | 37 ScalarTraits<BinaryRef>::output(GH.Hash, Ctx, OS); in output() 42 return ScalarTraits<BinaryRef>::input(Scalar, Ctx, GH.Hash); in input()
|
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 | MinidumpYAML.cpp | 285 IO.mapOptional("Misc Record", M.MiscRecord, yaml::BinaryRef()); in mapping() 303 MappingContextTraits<MemoryDescriptor, yaml::BinaryRef>::mapping( in mapping() 353 void yaml::MappingContextTraits<MemoryDescriptor, yaml::BinaryRef>::mapping( in mapping() 354 IO &IO, MemoryDescriptor &Memory, BinaryRef &Content) { in mapping()
|
H A D | CodeViewYAMLSymbols.cpp | 303 yaml::BinaryRef Binary; in map() 305 Binary = yaml::BinaryRef(Data); in map()
|
H A D | COFFEmitter.cpp | 168 static yaml::BinaryRef
|
H A D | MachOEmitter.cpp | 348 yaml::BinaryRef Content = *Sec.content; in writeSectionData()
|
H A D | ELFEmitter.cpp | 99 void writeAsBinary(const yaml::BinaryRef &Bin, uint64_t N = UINT64_MAX) { in writeAsBinary() 726 const std::optional<yaml::BinaryRef> &Content, in writeContent()
|
H A D | ELFYAML.cpp | 1401 Section.Content = yaml::BinaryRef(*Section.ContentBuf); in sectionMapping()
|