Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1659 VerDef.vd_cnt = E.VerNames.size(); in writeSectionContent()
1664 sizeof(Elf_Verdef) + E.VerNames.size() * sizeof(Elf_Verdaux); in writeSectionContent()
1667 for (size_t J = 0; J < E.VerNames.size(); ++J, ++AuxCnt) { in writeSectionContent()
1669 VernAux.vda_name = DotDynstr.getOffset(E.VerNames[J]); in writeSectionContent()
1670 if (J == E.VerNames.size() - 1) in writeSectionContent()
2025 for (StringRef Name : E.VerNames) in finalizeStrings()
H A DELFYAML.cpp1908 IO.mapRequired("Names", E.VerNames); in mapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h585 std::vector<StringRef> VerNames; member