Home | History | Annotate | Download | only in llvm-readobj

Lines Matching full:buckets

1813   W.printNumber("Num Buckets", HashTable->nbucket);
1815 W.printList("Buckets", HashTable->buckets());
1824 W.printNumber("Num Buckets", GnuHashTable->nbuckets);
1829 W.printList("Buckets", GnuHashTable->buckets());
3059 // dynamic symbol table. The table shows number of hash buckets for different
3060 // lengths of chains as absolute number and percentage of the total buckets.
3061 // Additionally cumulative coverage of symbols for each set of buckets.
3072 ArrayRef<Elf_Word> Buckets = HashTable->buckets();
3083 // Go over all buckets and and note chain lengths of each bucket (total
3086 for (size_t C = Buckets[B]; C > 0 && C < NChain; C = Chains[C])
3099 // Print Number of buckets with each chain lengths and their cumulative
3102 << " buckets)\n"
3115 Buckets = GnuHashTable->buckets();
3131 if (!Buckets[B])
3134 for (size_t C = Buckets[B] - Symndx;
3149 // Print Number of buckets with each chain lengths and their cumulative
3152 << " buckets)\n"