Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4750 size_t NBucket = HashTable.nbucket; in printHashHistogram() local
4759 if (NChain == 0 || NBucket == 0) in printHashHistogram()
4762 std::vector<size_t> ChainLen(NBucket, 0); in printHashHistogram()
4765 for (size_t B = 0; B < NBucket; B++) { in printHashHistogram()
4788 for (size_t B = 0; B < NBucket; B++) in printHashHistogram()
4792 OS << "Histogram for bucket list length (total of " << NBucket in printHashHistogram()
4798 (Count[I] * 100.0) / NBucket, in printHashHistogram()
4820 size_t NBucket = GnuHashTable.nbuckets; in printGnuHashHistogram() local
4821 if (Chains.empty() || NBucket == 0) in printGnuHashHistogram()
4825 std::vector<size_t> ChainLen(NBucket, 0); in printGnuHashHistogram()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1266 uint64_t NBucket = Data.getU32(Cur); in dumpHashSection() local
1268 if (Content.size() != (2 + NBucket + NChain) * 4) { in dumpHashSection()
1275 S->Bucket.emplace(NBucket); in dumpHashSection()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1391 assert(!IO.outputting() || (!Section.NBucket && !Section.NChain)); in sectionMapping()
1393 IO.mapOptional("NBucket", Section.NBucket); in sectionMapping()
H A DELFEmitter.cpp1502 Section.NBucket.value_or(llvm::yaml::Hex64(Section.Bucket->size())), in writeSectionContent()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h403 std::optional<llvm::yaml::Hex64> NBucket; member