Home
last modified time | relevance | path

Searched refs:DataRef (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DCFGDiff.h159 using DataRef = const GraphDiff<BasicBlock *, InverseGraph> *; member
160 using NodeRef = std::pair<DataRef, BasicBlock *>;
163 WrappedPairNodeDataIterator<succ_iterator, NodeRef, DataRef>;
176 WrappedPairNodeDataIterator<vec_iterator, NodeRef, DataRef>;
213 using DataRef = const GraphDiff<BasicBlock *, InverseGraph> *; member
214 using NodeRef = std::pair<DataRef, BasicBlock *>;
217 WrappedPairNodeDataIterator<pred_iterator, NodeRef, DataRef>;
230 WrappedPairNodeDataIterator<vec_iterator, NodeRef, DataRef>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
Diterator.h343 template <typename ItType, typename NodeRef, typename DataRef>
346 WrappedPairNodeDataIterator<ItType, NodeRef, DataRef>, ItType,
354 const DataRef DR;
358 WrappedPairNodeDataIterator(ItType Begin, const DataRef DR) in WrappedPairNodeDataIterator()
/third_party/boost/boost/graph/
Dleda_graph.hpp732 template < class Data, class DataRef, class GraphPtr >
733 class leda_graph_data_map : public put_get_helper< DataRef,
734 leda_graph_data_map< Data, DataRef, GraphPtr > >
738 typedef DataRef reference;
742 template < class NodeOrEdge > DataRef operator[](NodeOrEdge x) const in operator []()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp199 encodeULEB128(Info.DataRef.Segment, SubSection.getStream()); in writeSectionContent()
200 encodeULEB128(Info.DataRef.Offset, SubSection.getStream()); in writeSectionContent()
201 encodeULEB128(Info.DataRef.Size, SubSection.getStream()); in writeSectionContent()
DWasmYAML.cpp498 IO.mapRequired("Segment", Info.DataRef.Segment); in mapping()
499 IO.mapOptional("Offset", Info.DataRef.Offset, 0u); in mapping()
500 IO.mapRequired("Size", Info.DataRef.Size); in mapping()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DWasmObjectFile.cpp46 Out << ", Segment=" << Info.DataRef.Segment; in print()
47 Out << ", Offset=" << Info.DataRef.Offset; in print()
48 Out << ", Size=" << Info.DataRef.Size; in print()
562 Info.DataRef = wasm::WasmDataReference{Index, Offset, Size}; in parseLinkingSectionSymtab()
1315 uint32_t SegmentIndex = Sym.Info.DataRef.Segment; in getWasmSymbolValue()
1318 return Segment.Offset.Value.Int32 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DWasm.h189 WasmDataReference DataRef; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DWasmObjectWriter.cpp956 encodeULEB128(Sym.DataRef.Segment, W.OS); in writeLinkingMetaDataSection()
957 encodeULEB128(Sym.DataRef.Offset, W.OS); in writeLinkingMetaDataSection()
958 encodeULEB128(Sym.DataRef.Size, W.OS); in writeLinkingMetaDataSection()
1477 Info.DataRef = DataLocations.find(&WS)->second; in writeObject()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h158 wasm::WasmDataReference DataRef; member