Home
last modified time | relevance | path

Searched refs:NChain (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1223 uint64_t NChain = Data.getU32(Cur); in dumpHashSection() local
1224 if (Content.size() != (2 + NBucket + NChain) * 4) { in dumpHashSection()
1235 S->Chain.emplace(NChain); in dumpHashSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h399 Optional<llvm::yaml::Hex64> NChain; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1300 (!Section.NBucket.hasValue() && !Section.NChain.hasValue())); in sectionMapping()
1301 IO.mapOptional("NChain", Section.NChain); in sectionMapping()
H A DELFEmitter.cpp1462 Section.NChain.getValueOr(llvm::yaml::Hex64(Section.Chain->size())), in writeSectionContent()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4573 size_t NChain = HashTable.nchain; in printHashHistogram() local
4581 if (NChain == 0 || NBucket == 0) in printHashHistogram()
4588 std::vector<bool> Visited(NChain); in printHashHistogram()
4589 for (size_t C = Buckets[B]; C < NChain; C = Chains[C]) { in printHashHistogram()