/external/deqp-deps/amber/src/vkscript/ |
D | section_parser.cc | 45 NodeType* section_type, in NameToNodeType() argument 48 assert(section_type); in NameToNodeType() 76 *section_type = NodeType::kComment; in NameToNodeType() 78 *section_type = NodeType::kIndices; in NameToNodeType() 80 *section_type = NodeType::kRequire; in NameToNodeType() 82 *section_type = NodeType::kTest; in NameToNodeType() 84 *section_type = NodeType::kVertexData; in NameToNodeType() 86 *section_type = NodeType::kShader; in NameToNodeType() 91 *section_type = NodeType::kShader; in NameToNodeType() 96 *section_type = NodeType::kShader; in NameToNodeType() [all …]
|
D | section_parser_test.cc | 48 EXPECT_EQ(NodeType::kShader, sections[0].section_type); in TEST_F() 63 EXPECT_EQ(NodeType::kShader, sections[0].section_type); in TEST_F() 100 EXPECT_EQ(NodeType::kShader, sections[0].section_type); in TEST_F() 106 EXPECT_EQ(NodeType::kShader, sections[1].section_type); in TEST_F() 112 EXPECT_EQ(NodeType::kShader, sections[2].section_type); in TEST_F() 118 EXPECT_EQ(NodeType::kIndices, sections[3].section_type); in TEST_F() 123 EXPECT_EQ(NodeType::kTest, sections[4].section_type); in TEST_F() 137 EXPECT_EQ(NodeType::kShader, sections[0].section_type); in TEST_F() 152 EXPECT_EQ(NodeType::kShader, sections[0].section_type); in TEST_F() 188 NodeType section_type; in TEST_F() member [all …]
|
D | section_parser.h | 43 NodeType section_type; member 63 NodeType* section_type, in NameToNodeTypeForTesting() argument 66 return NameToNodeType(name, section_type, shader_type, fmt); in NameToNodeTypeForTesting() 71 void AddSection(NodeType section_type, 77 NodeType* section_type,
|
D | parser.cc | 79 if (!SectionParser::HasShader(section.section_type)) in GenerateDefaultPipeline() 113 if (section.section_type == NodeType::kComment) in ProcessSection() 116 if (SectionParser::HasShader(section.section_type)) in ProcessSection() 118 if (section.section_type == NodeType::kRequire) in ProcessSection() 120 if (section.section_type == NodeType::kIndices) in ProcessSection() 122 if (section.section_type == NodeType::kVertexData) in ProcessSection() 124 if (section.section_type == NodeType::kTest) in ProcessSection() 131 assert(SectionParser::HasShader(section.section_type)); in ProcessShaderBlock()
|
/external/google-breakpad/src/common/linux/ |
D | elfutils.cc | 45 typename ElfClass::Word section_type, in FindElfClassSection() argument 68 FindElfSectionByName<ElfClass>(section_name, section_type, in FindElfClassSection() 122 uint32_t section_type, in FindElfSection() argument 140 FindElfClassSection<ElfClass32>(elf_base, section_name, section_type, in FindElfSection() 144 FindElfClassSection<ElfClass64>(elf_base, section_name, section_type, in FindElfSection()
|
D | elfutils-inl.h | 48 typename ElfClass::Word section_type, in FindElfSectionByName() argument 63 if (sections[i].sh_type == section_type && in FindElfSectionByName()
|
D | elfutils.h | 91 uint32_t section_type, 100 typename ElfClass::Word section_type,
|
/external/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/ |
D | SymbolVendorWasm.cpp | 128 for (SectionType section_type : g_sections) { in CreateInstance() local 130 objfile_section_list->FindSectionByType(section_type, true)) { in CreateInstance() 132 module_section_list->FindSectionByType(section_type, true)) in CreateInstance()
|
/external/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/ |
D | SymbolVendorELF.cpp | 133 for (SectionType section_type : g_sections) { in CreateInstance() local 135 objfile_section_list->FindSectionByType(section_type, true)) { in CreateInstance() 137 module_section_list->FindSectionByType(section_type, true)) in CreateInstance()
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/wasm/ |
D | ObjectFileWasm.cpp | 267 SectionType section_type = eSectionTypeOther; in CreateSections() local 274 section_type = eSectionTypeCode; in CreateSections() 283 section_type = in CreateSections() 306 if (section_type == eSectionTypeOther) in CreateSections() 319 section_type, // Section ID. in CreateSections() 321 section_type, // Section type. in CreateSections()
|
/external/google-breakpad/src/common/dwarf/ |
D | elf_reader.cc | 253 typename ElfArch::Word section_type) in SymbolIterator() argument 254 : symbol_section_(reader->GetSectionByType(section_type)), in SymbolIterator() 574 void VisitSymbols(typename ElfArch::Word section_type, in VisitSymbols() argument 576 VisitSymbols(section_type, sink, -1, -1, false); in VisitSymbols() 579 void VisitSymbols(typename ElfArch::Word section_type, in VisitSymbols() argument 584 for (SymbolIterator<ElfArch> it(this, section_type); in VisitSymbols() 597 if (section_type == SHT_DYNSYM && in VisitSymbols() 695 typename ElfArch::Word section_type) { in GetSectionByType() argument 697 if (section_headers_[k].sh_type == section_type) { in GetSectionByType()
|
/external/mesa3d/src/gallium/frontends/clover/llvm/codegen/ |
D | bitcode.cpp | 73 enum module::section::type section_type) { 76 m.secs.emplace_back(0, section_type, code.size(), code);
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | DWARFContext.cpp | 17 SectionType section_type) { in LoadSection() argument 21 auto section_sp = section_list->FindSectionByType(section_type, true); in LoadSection()
|
/external/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 408 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE; in PrintIndirectSymbols() local 409 if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS || in PrintIndirectSymbols() 410 section_type == MachO::S_LAZY_SYMBOL_POINTERS || in PrintIndirectSymbols() 411 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS || in PrintIndirectSymbols() 412 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS || in PrintIndirectSymbols() 413 section_type == MachO::S_SYMBOL_STUBS) { in PrintIndirectSymbols() 415 if (section_type == MachO::S_SYMBOL_STUBS) in PrintIndirectSymbols() 436 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE; in PrintIndirectSymbols() local 437 if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS || in PrintIndirectSymbols() 438 section_type == MachO::S_LAZY_SYMBOL_POINTERS || in PrintIndirectSymbols() [all …]
|
/external/google-breakpad/src/common/mac/ |
D | macho_reader.cc | 503 const uint32_t section_type = section.flags & SECTION_TYPE; in WalkSegmentSections() local 504 if (section_type == S_ZEROFILL || section_type == S_THREAD_LOCAL_ZEROFILL || in WalkSegmentSections() 505 section_type == S_GB_ZEROFILL) { in WalkSegmentSections()
|
/external/llvm-project/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 731 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE; in PrintIndirectSymbols() local 732 if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS || in PrintIndirectSymbols() 733 section_type == MachO::S_LAZY_SYMBOL_POINTERS || in PrintIndirectSymbols() 734 section_type == MachO::S_LAZY_DYLIB_SYMBOL_POINTERS || in PrintIndirectSymbols() 735 section_type == MachO::S_THREAD_LOCAL_VARIABLE_POINTERS || in PrintIndirectSymbols() 736 section_type == MachO::S_SYMBOL_STUBS) { in PrintIndirectSymbols() 738 if (section_type == MachO::S_SYMBOL_STUBS) in PrintIndirectSymbols() 759 uint32_t section_type = Sec.flags & MachO::SECTION_TYPE; in PrintIndirectSymbols() local 760 if (section_type == MachO::S_NON_LAZY_SYMBOL_POINTERS || in PrintIndirectSymbols() 761 section_type == MachO::S_LAZY_SYMBOL_POINTERS || in PrintIndirectSymbols() [all …]
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
D | SymbolFileBreakpad.cpp | 35 LineIterator(ObjectFile &obj, Record::Kind section_type) in LineIterator() argument 36 : m_obj(&obj), m_section_type(toString(section_type)), in LineIterator() 42 LineIterator(ObjectFile &obj, Record::Kind section_type, Bookmark bookmark); 89 Record::Kind section_type, in LineIterator() argument 91 : m_obj(&obj), m_section_type(toString(section_type)), in LineIterator() 131 SymbolFileBreakpad::lines(Record::Kind section_type) { in lines() argument 132 return llvm::make_range(LineIterator(*m_objfile_sp, section_type), in lines()
|
D | SymbolFileBreakpad.h | 176 llvm::iterator_range<LineIterator> lines(Record::Kind section_type);
|
/external/mesa3d/src/gallium/frontends/clover/llvm/ |
D | codegen.hpp | 46 enum module::section::type section_type);
|
/external/libabigail/src/ |
D | abg-elf-helpers.h | 50 Elf64_Word section_type);
|
D | abg-elf-helpers.cc | 311 find_section(Elf* elf_handle, const std::string& name, Elf64_Word section_type) in find_section() argument 322 if (header == NULL || header->sh_type != section_type) in find_section()
|
/external/openssh/ |
D | PROTOCOL.krl | 26 byte section_type 29 Where "section_type" indicates the type of the "section_data". An exception
|
/external/mesa3d/src/gallium/frontends/clover/spirv/ |
D | invocation.cpp | 117 enum module::section::type section_type) { in make_text_section() argument 119 module::section text { 0, section_type, header.num_bytes, {} }; in make_text_section() 725 const auto section_type = create_library ? module::section::text_library : 780 m.secs.emplace_back(make_text_section(final_binary, section_type));
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/PECOFF/ |
D | ObjectFilePECOFF.cpp | 782 SectionType section_type = in GetSectionType() local 805 if (section_type != eSectionTypeInvalid) in GetSectionType() 806 return section_type; in GetSectionType() 845 SectionType section_type = GetSectionType(sect_name, m_sect_headers[idx]); in CreateSections() local 852 section_type, in CreateSections()
|
/external/llvm-project/lldb/source/Symbol/ |
D | ObjectFile.cpp | 324 const SectionType section_type = section_sp->GetType(); in GetAddressClass() local 325 switch (section_type) { in GetAddressClass()
|