Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2778 size_t NBucket = HashTable.nbucket; in printHashHistogram() local
2786 if (NChain == 0 || NBucket == 0) in printHashHistogram()
2789 std::vector<size_t> ChainLen(NBucket, 0); in printHashHistogram()
2792 for (size_t B = 0; B < NBucket; ++B) { in printHashHistogram()
2815 for (size_t B = 0; B < NBucket; B++) in printHashHistogram()
2838 size_t NBucket = GnuHashTable.nbuckets; in printGnuHashHistogram() local
2839 if (Chains.empty() || NBucket == 0) in printGnuHashHistogram()
2843 std::vector<size_t> ChainLen(NBucket, 0); in printGnuHashHistogram()
2844 for (size_t B = 0; B < NBucket; ++B) { in printGnuHashHistogram()
2861 for (size_t B = 0; B < NBucket; ++B) in printGnuHashHistogram()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h417 std::optional<llvm::yaml::Hex64> NBucket; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1408 assert(!IO.outputting() || (!Section.NBucket && !Section.NChain)); in sectionMapping()
1410 IO.mapOptional("NBucket", Section.NBucket); in sectionMapping()
H A DELFEmitter.cpp1554 Section.NBucket.value_or(llvm::yaml::Hex64(Section.Bucket->size())), in writeSectionContent()