Home
last modified time | relevance | path

Searched refs:nbuckets (Results 1 – 9 of 9) sorted by relevance

/external/elfutils/libdwfl/
Ddwfl_module_getdwarf.c725 Elf32_Word nbuckets; in translate_offs() member
736 Elf32_Word nbuckets = header->nbuckets; in translate_offs() local
746 if (nbuckets > SIZE_MAX / sizeof (Elf32_Word)) in translate_offs()
751 nbuckets * sizeof (Elf32_Word), in translate_offs()
753 if (data != NULL && symndx < nbuckets) in translate_offs()
757 for (Elf32_Word bucket = 0; bucket < nbuckets; ++bucket) in translate_offs()
762 + nbuckets * sizeof (Elf32_Word)); in translate_offs()
/external/mdnsresponder/mDNSShared/
Ddnsextd.h141 mDNSs32 nbuckets; // buckets allocated member
Ddnsextd.c809 int i, bucket, newnbuckets = d->nbuckets * 2; in RehashTable()
816 for (i = 0; i < d->nbuckets; i++) in RehashTable()
828 d->nbuckets = newnbuckets; in RehashTable()
846 for (i = 0; i < d->nbuckets; i++) in PrintLeaseTable()
1144 d->nbuckets = LEASETABLE_INIT_NBUCKETS; in InitLeaseTable()
1347 for (i = 0; i < d->nbuckets; i++) in DeleteRecords()
1400 bucket = rr->namehash % d->nbuckets; in UpdateLeaseTable()
1443 if (d->nelems > d->nbuckets) in UpdateLeaseTable()
1446 bucket = rr->namehash % d->nbuckets; in UpdateLeaseTable()
/external/llvm/include/llvm/Object/
DELFTypes.h491 Elf_Word nbuckets;
503 reinterpret_cast<const Elf_Word *>(filter().end()), nbuckets);
/external/kernel-headers/original/uapi/linux/
Dbcache.h177 __u64 nbuckets; /* device size */ member
/external/elfutils/src/
Delflint.c2115 Elf32_Word nbuckets = ((Elf32_Word *) data->d_buf)[0]; in check_gnu_hash() local
2134 uint64_t used_buf = (4ULL + bitmask_words + nbuckets) * sizeof (Elf32_Word); in check_gnu_hash()
2153 + nbuckets); in check_gnu_hash()
2171 for (cnt = 4 + bitmask_words; cnt < 4 + bitmask_words + nbuckets; ++cnt) in check_gnu_hash()
2190 + nbuckets in check_gnu_hash()
Dldgeneric.c3607 size_t *bitmask_nwords, size_t *shift, size_t *nbuckets) in optimal_gnu_hash_size() argument
3612 *nbuckets = 3 * maxcnt / 2; in optimal_gnu_hash_size()
/external/valgrind/perf/
Dtinycc.c18205 int nbuckets, h; in put_elf_sym() local
18230 nbuckets = base[0]; in put_elf_sym()
18231 h = elf_hash(name) % nbuckets; in put_elf_sym()
18237 if (hs->nb_hashed_syms > 2 * nbuckets) { in put_elf_sym()
18238 rebuild_hash(s, 2 * nbuckets); in put_elf_sym()
18254 int nbuckets, sym_index, h; in find_elf_sym() local
18260 nbuckets = ((int *)hs->data)[0]; in find_elf_sym()
18261 h = elf_hash(name) % nbuckets; in find_elf_sym()
18268 sym_index = ((int *)hs->data)[2 + nbuckets + sym_index]; in find_elf_sym()
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp1638 W.printNumber("Num Buckets", GnuHashTable->nbuckets); in printGnuHashTable()