Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DObjDumper.cpp192 for (const uint8_t *SecPtr = SecContent; SecPtr < SecEnd; SecPtr += 16) { in printSectionsAsHex() local
193 const uint8_t *TmpSecPtr = SecPtr; in printSectionsAsHex()
197 W.startLine() << format_hex(Section.getAddress() + (SecPtr - SecContent), in printSectionsAsHex()
218 TmpSecPtr = SecPtr; in printSectionsAsHex()
/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DELFObjHandler.cpp403 Expected<const uint8_t *> SecPtr = ElfFile.toMappedAddr(EntAddr); in getDynamicData() local
404 if (!SecPtr) in getDynamicData()
406 SecPtr.takeError(), in getDynamicData()
413 return *SecPtr; in getDynamicData()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.h1155 using SecPtr = std::unique_ptr<SectionBase>;
1158 std::vector<SecPtr> Sections;
1160 std::vector<SecPtr> RemovedSections;
1201 filter_iterator<pointee_iterator<std::vector<SecPtr>::const_iterator>,
1212 find_if(Sections, [&](const SecPtr &Sec) { return Sec->Name == Name; }); in findSection()
H A DELFObject.cpp2162 [&](const SecPtr &Sec) { return Sec->Name == Name; }); in updateSection()
2195 std::begin(Sections), std::end(Sections), [=](const SecPtr &Sec) { in removeSections()
2254 auto SectionIndexLess = [](const SecPtr &Lhs, const SecPtr &Rhs) { in replaceSections()
2278 for (const SecPtr &Sec : Sections) in removeSymbols()