Home
last modified time | relevance | path

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

/external/llvm-project/llvm/tools/llvm-readobj/
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()
/external/llvm-project/llvm/tools/llvm-objcopy/ELF/
DObject.h1010 using SecPtr = std::unique_ptr<SectionBase>;
1013 std::vector<SecPtr> Sections;
1015 std::vector<SecPtr> RemovedSections;
1060 filter_iterator<pointee_iterator<std::vector<SecPtr>::const_iterator>,
1068 find_if(Sections, [&](const SecPtr &Sec) { return Sec->Name == Name; }); in findSection()
DObject.cpp2104 std::begin(Sections), std::end(Sections), [=](const SecPtr &Sec) { in removeSections()
2154 for (const SecPtr &Sec : Sections) in removeSymbols()
2192 llvm::stable_sort(Sections, [](const SecPtr &A, const SecPtr &B) { in sortSections()