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

  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFYAML.cpp 1374 ELFYAML::SectionHeaderTable &SHT) {
1375 IO.mapOptional("Offset", SHT.Offset);
1376 IO.mapOptional("Sections", SHT.Sections);
1377 IO.mapOptional("Excluded", SHT.Excluded);
1378 IO.mapOptional("NoHeaders", SHT.NoHeaders);
1449 else if (auto *SHT = dyn_cast<ELFYAML::SectionHeaderTable>(Section.get()))
1450 TypeStr = SHT->TypeStr;
1607 if (const auto *SHT = dyn_cast<ELFYAML::SectionHeaderTable>(C.get())) {
1608 if (SHT->NoHeaders && (SHT->Sections || SHT->Excluded || SHT->Offset)
    [all...]
ELFEmitter.cpp 1930 const ELFYAML::SectionHeaderTable &SHT = Doc.getSectionHeaderTable();
1931 if (!SHT.NoHeaders.getValueOr(false))
1932 CBA.updateDataAt(*SHT.Offset, SHeaders.data(),
1933 SHT.getNumHeaders(SHeaders.size()) * sizeof(Elf_Shdr));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ELFObjectFile.h 327 uintptr_t SHT = reinterpret_cast<uintptr_t>((*SectionsOrErr).begin());
329 (reinterpret_cast<uintptr_t>(SymTable) - SHT) / sizeof(Elf_Shdr);
943 uintptr_t SHT = reinterpret_cast<uintptr_t>((*SectionsOrErr).begin());
944 RelData.d.a = (Sec.p - SHT) / EF.getHeader().e_shentsize;
  /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
elf2yaml.cpp 385 std::unique_ptr<ELFYAML::SectionHeaderTable> SHT =
387 SHT->Sections.emplace();
389 SHT->Sections->push_back({S->Name});
390 Chunks.push_back(std::move(SHT));

Completed in 75 milliseconds