Searched refs:SectionData (Results 1 – 9 of 9) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | Decompressor.cpp | 34 : SectionData(Data), DecompressedSize(0) {} in Decompressor() 37 if (!SectionData.startswith("ZLIB")) in consumeCompressedGnuHeader() 40 SectionData = SectionData.substr(4); in consumeCompressedGnuHeader() 43 if (SectionData.size() < 8) in consumeCompressedGnuHeader() 45 DecompressedSize = read64be(SectionData.data()); in consumeCompressedGnuHeader() 46 SectionData = SectionData.substr(8); in consumeCompressedGnuHeader() 55 if (SectionData.size() < HdrSize) in consumeCompressedZLibHeader() 58 DataExtractor Extractor(SectionData, IsLittleEndian, 0); in consumeCompressedZLibHeader() 71 SectionData = SectionData.substr(HdrSize); in consumeCompressedZLibHeader() 97 return zlib::uncompress(SectionData, Buffer.data(), Size); in decompress()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | COFFEmitter.cpp | 222 if (S.Name == ".debug$S" && S.SectionData.binary_size() == 0) { in layoutCOFF() 234 if (S.SectionData.binary_size() == 0) { in layoutCOFF() 238 S.SectionData = in layoutCOFF() 242 if (S.SectionData.binary_size() == 0) in layoutCOFF() 243 S.SectionData = CodeViewYAML::toDebugT(S.DebugT, CP.Allocator, S.Name); in layoutCOFF() 245 if (S.SectionData.binary_size() == 0) in layoutCOFF() 246 S.SectionData = CodeViewYAML::toDebugT(S.DebugP, CP.Allocator, S.Name); in layoutCOFF() 248 if (S.DebugH.hasValue() && S.SectionData.binary_size() == 0) in layoutCOFF() 249 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF() 252 if (S.SectionData.binary_size() > 0) { in layoutCOFF() [all …]
|
D | COFFYAML.cpp | 571 IO.mapOptional("SectionData", Sec.SectionData); in mapping() 583 if (Sec.SectionData.binary_size() == 0 && in mapping()
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLASTNode.h | 254 struct SectionData { struct 255 SectionData() {} in SectionData() function 257 SectionData(StringFragment name, StringFragment argument, StringFragment text) in SectionData() function 279 sizeof(SectionData))))))))))))]; 353 NodeData(SectionData data) in NodeData() 473 ASTNode(std::vector<ASTNode>* nodes, int offset, Kind kind, SectionData s) in ASTNode() 589 SectionData getSectionData() const { in getSectionData() 591 SectionData result; in getSectionData()
|
D | SkSLIRGenerator.cpp | 1194 ASTNode::SectionData section = decl.getSectionData(); in convertIdentifier() 1238 ASTNode::SectionData section = s.getSectionData(); in convertSection()
|
D | SkSLParser.cpp | 331 ASTNode::SectionData(name, argument, text)); in section()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | Decompressor.h | 59 StringRef SectionData; variable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
D | COFFYAML.h | 72 yaml::BinaryRef SectionData; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 1562 if (StringRef *SectionData = mapSectionToMember(SecIt.first())) in DWARFObjInMemory() local 1563 *SectionData = SecIt.second->getBuffer(); in DWARFObjInMemory() 1641 if (StringRef *SectionData = mapSectionToMember(Name)) { in DWARFObjInMemory() local 1642 *SectionData = Data; in DWARFObjInMemory()
|