Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4588 size_t NBucket = HashTable.nbucket; in printHashHistogram() local
4597 if (NChain == 0 || NBucket == 0) in printHashHistogram()
4600 std::vector<size_t> ChainLen(NBucket, 0); in printHashHistogram()
4603 for (size_t B = 0; B < NBucket; B++) { in printHashHistogram()
4626 for (size_t B = 0; B < NBucket; B++) in printHashHistogram()
4636 (Count[I] * 100.0) / NBucket, in printHashHistogram()
4658 size_t NBucket = GnuHashTable.nbuckets; in printGnuHashHistogram() local
4659 if (Chains.empty() || NBucket == 0) in printGnuHashHistogram()
4663 std::vector<size_t> ChainLen(NBucket, 0); in printGnuHashHistogram()
4664 for (size_t B = 0; B < NBucket; B++) { in printGnuHashHistogram()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h399 Optional<llvm::yaml::Hex64> NBucket; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1304 (!Section.NBucket.hasValue() && !Section.NChain.hasValue())); in sectionMapping()
1306 IO.mapOptional("NBucket", Section.NBucket); in sectionMapping()
H A DELFEmitter.cpp1495 Section.NBucket.getValueOr(llvm::yaml::Hex64(Section.Bucket->size())), in writeSectionContent()