Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/test/tools/obj2yaml/ELF/
H A Dhash-section.yaml84 ## Case 5, 6: NChain/NBucket are incorrect and causing 32-bit
90 NBucket: 0x1
96 NBucket: 0xffffffff
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/
H A Dhash-section.yaml279 ## Check we can override "nbucket" and "nchain" values of a SHT_HASH section using "NBucket"
311 NBucket: 0xAA
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Dhash-histogram.test188 NBucket: [[NBUCKET]]
232 NBucket: [[NBUCKET=0x2]]
H A Dhash-table.test261 NBucket: [[NBUCKET]]
H A Dhash-symbols.test448 NBucket: [[NBUCKET=1]]
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DELFDumper.cpp4693 size_t NBucket = HashTable.nbucket; in printHashHistogram() local
4702 if (NChain == 0 || NBucket == 0) in printHashHistogram()
4705 std::vector<size_t> ChainLen(NBucket, 0); in printHashHistogram()
4708 for (size_t B = 0; B < NBucket; B++) { in printHashHistogram()
4731 for (size_t B = 0; B < NBucket; B++) in printHashHistogram()
4741 (Count[I] * 100.0) / NBucket, in printHashHistogram()
4763 size_t NBucket = GnuHashTable.nbuckets; in printGnuHashHistogram() local
4764 if (Chains.empty() || NBucket == 0) in printGnuHashHistogram()
4768 std::vector<size_t> ChainLen(NBucket, 0); in printGnuHashHistogram()
4769 for (size_t B = 0; B < NBucket; B++) { in printGnuHashHistogram()
[all …]
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1264 uint64_t NBucket = Data.getU32(Cur); in dumpHashSection() local
1266 if (Content.size() != (2 + NBucket + NChain) * 4) { in dumpHashSection()
1273 S->Bucket.emplace(NBucket); in dumpHashSection()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h401 Optional<llvm::yaml::Hex64> NBucket; member
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DELFYAML.cpp1377 assert(!IO.outputting() || (!Section.NBucket && !Section.NChain)); in sectionMapping()
1379 IO.mapOptional("NBucket", Section.NBucket); in sectionMapping()
H A DELFEmitter.cpp1498 Section.NBucket.value_or(llvm::yaml::Hex64(Section.Bucket->size())), in writeSectionContent()