Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2wasm.cpp163 encodeULEB128(Info.DataRef.Segment, SubSection.GetStream()); in writeSectionContent()
164 encodeULEB128(Info.DataRef.Offset, SubSection.GetStream()); in writeSectionContent()
165 encodeULEB128(Info.DataRef.Size, SubSection.GetStream()); in writeSectionContent()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DWasmObjectFile.cpp45 Out << ", Segment=" << Info.DataRef.Segment; in print()
46 Out << ", Offset=" << Info.DataRef.Offset; in print()
47 Out << ", Size=" << Info.DataRef.Size; in print()
507 Info.DataRef = wasm::WasmDataReference{Index, Offset, Size}; in parseLinkingSectionSymtab()
1061 uint32_t SegmentIndex = Sym.Info.DataRef.Segment; in getWasmSymbolValue()
1064 return Segment.Offset.Value.Int32 + Sym.Info.DataRef.Offset; in getWasmSymbolValue()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DWasmYAML.cpp404 IO.mapRequired("Segment", Info.DataRef.Segment); in mapping()
405 IO.mapOptional("Offset", Info.DataRef.Offset, 0u); in mapping()
406 IO.mapRequired("Size", Info.DataRef.Size); in mapping()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dwasm2yaml.cpp103 Info.DataRef = Symbol.DataRef; in dumpCustomSection()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
DWasm.h157 WasmDataReference DataRef; member
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DWasmObjectWriter.cpp954 encodeULEB128(Sym.DataRef.Segment, W.OS); in writeLinkingMetaDataSection()
955 encodeULEB128(Sym.DataRef.Offset, W.OS); in writeLinkingMetaDataSection()
956 encodeULEB128(Sym.DataRef.Size, W.OS); in writeLinkingMetaDataSection()
1361 Info.DataRef = DataLocations.find(&WS)->second; in writeObject()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_document.cpp461 case XFA_AttributeValue::DataRef: { in FindMatchingDataNode()
942 if (eBindMatch == XFA_AttributeValue::DataRef && in CopyContainer_SubformSet()
943 eParentBindMatch == XFA_AttributeValue::DataRef) { in CopyContainer_SubformSet()
1190 case XFA_AttributeValue::DataRef: { in UpdateBindingRelations()
Dattribute_values.inc250 VALUE____(0xeb2db2d7u, "dataRef", DataRef)
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h140 wasm::WasmDataReference DataRef; member