Home
last modified time | relevance | path

Searched refs:SecPtr (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DObjDumper.cpp149 for (const uint8_t *SecPtr = SecContent; SecPtr < SecEnd; SecPtr += 16) { in printSectionsAsHex() local
150 const uint8_t *TmpSecPtr = SecPtr; in printSectionsAsHex()
154 W.startLine() << format_hex(Section.getAddress() + (SecPtr - SecContent), in printSectionsAsHex()
175 TmpSecPtr = SecPtr; in printSectionsAsHex()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DObject.h1013 using SecPtr = std::unique_ptr<SectionBase>;
1016 std::vector<SecPtr> Sections;
1018 std::vector<SecPtr> RemovedSections;
1063 filter_iterator<pointee_iterator<std::vector<SecPtr>::const_iterator>,
1071 find_if(Sections, [&](const SecPtr &Sec) { return Sec->Name == Name; }); in findSection()
H A DObject.cpp2112 std::begin(Sections), std::end(Sections), [=](const SecPtr &Sec) { in removeSections()
2162 for (const SecPtr &Sec : Sections) in removeSymbols()
2200 llvm::stable_sort(Sections, [](const SecPtr &A, const SecPtr &B) { in sortSections()