HomeSort by: relevance | last modified time | path
    Searched refs:DataRef (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
WasmDumper.cpp 233 W.printHex("Offset", Symbol.Info.DataRef.Offset);
234 W.printHex("Segment", Symbol.Info.DataRef.Segment);
235 W.printHex("Size", Symbol.Info.DataRef.Size);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
iterator.h 353 // Wrapper iterator over iterator ItType, adding DataRef to the type of ItType,
354 // to create NodeRef = std::pair<InnerTypeOfItType, DataRef>.
355 template <typename ItType, typename NodeRef, typename DataRef>
358 WrappedPairNodeDataIterator<ItType, NodeRef, DataRef>, ItType,
366 const DataRef DR;
370 WrappedPairNodeDataIterator(ItType Begin, const DataRef DR)
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
wasm2yaml.cpp 130 Info.DataRef = Symbol.DataRef;
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
Wasm.h 204 WasmDataReference DataRef;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
WasmEmitter.cpp 201 encodeULEB128(Info.DataRef.Segment, SubSection.getStream());
202 encodeULEB128(Info.DataRef.Offset, SubSection.getStream());
203 encodeULEB128(Info.DataRef.Size, SubSection.getStream());
WasmYAML.cpp 517 IO.mapRequired("Segment", Info.DataRef.Segment);
518 IO.mapOptional("Offset", Info.DataRef.Offset, 0u);
519 IO.mapRequired("Size", Info.DataRef.Size);
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 47 Out << ", Segment=" << Info.DataRef.Segment;
48 Out << ", Offset=" << Info.DataRef.Offset;
49 Out << ", Size=" << Info.DataRef.Size;
646 Info.DataRef = wasm::WasmDataReference{Index, Offset, Size};
1524 uint32_t SegmentIndex = Sym.Info.DataRef.Segment;
1527 return Segment.Offset.Value.Int32 + Sym.Info.DataRef.Offset;
1529 return Segment.Offset.Value.Int64 + Sym.Info.DataRef.Offset;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
WasmYAML.h 163 wasm::WasmDataReference DataRef;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 1116 encodeULEB128(Sym.DataRef.Segment, W->OS);
1117 encodeULEB128(Sym.DataRef.Offset, W->OS);
1118 encodeULEB128(Sym.DataRef.Size, W->OS);
1749 Info.DataRef = DataLocations.find(&WS)->second;

Completed in 109 milliseconds