Home
last modified time | relevance | path

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

/external/chromium/chrome/browser/chromeos/
Dexternal_metrics.cc79 int sample, min, max, nbuckets; in RecordHistogram() local
82 name, &sample, &min, &max, &nbuckets); in RecordHistogram()
90 name, min, max, nbuckets, base::Histogram::kUmaTargetedHistogramFlag); in RecordHistogram()
/external/elfutils/libdwfl/
Ddwfl_module_getdwarf.c403 Elf32_Word nbuckets; in find_dynsym() member
414 Elf32_Word nbuckets = header->nbuckets; in find_dynsym() local
422 nbuckets * sizeof (Elf32_Word), in find_dynsym()
424 if (data != NULL && symndx < nbuckets) in find_dynsym()
428 for (Elf32_Word bucket = 0; bucket < nbuckets; ++bucket) in find_dynsym()
433 + nbuckets * sizeof (Elf32_Word)); in find_dynsym()
/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/elfutils/src/
Delflint.c1996 Elf32_Word nbuckets = ((Elf32_Word *) data->d_buf)[0]; in check_gnu_hash() local
2010 if (shdr->sh_size < (4 + bitmask_words + nbuckets) * sizeof (Elf32_Word)) in check_gnu_hash()
2015 (long int) ((4 + bitmask_words + nbuckets) * sizeof (Elf32_Word))); in check_gnu_hash()
2025 + nbuckets); in check_gnu_hash()
2043 for (cnt = 4 + bitmask_words; cnt < 4 + bitmask_words + nbuckets; ++cnt) in check_gnu_hash()
2062 + nbuckets in check_gnu_hash()
Dldgeneric.c3617 size_t *bitmask_nwords, size_t *shift, size_t *nbuckets) in optimal_gnu_hash_size() argument
3622 *nbuckets = 3 * maxcnt / 2; in optimal_gnu_hash_size()
/external/valgrind/main/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()