Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1591 VerDef.vd_cnt = E.VerNames.size(); in writeSectionContent()
1596 sizeof(Elf_Verdef) + E.VerNames.size() * sizeof(Elf_Verdaux); in writeSectionContent()
1599 for (size_t J = 0; J < E.VerNames.size(); ++J, ++AuxCnt) { in writeSectionContent()
1601 VernAux.vda_name = DotDynstr.getOffset(E.VerNames[J]); in writeSectionContent()
1602 if (J == E.VerNames.size() - 1) in writeSectionContent()
1957 for (StringRef Name : E.VerNames) in finalizeStrings()
H A DELFYAML.cpp1884 IO.mapRequired("Names", E.VerNames); in mapping()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h573 std::vector<StringRef> VerNames; member