Symbol: bucket
lib/libc/db/hash/hash.c
696
uint32_t bucket;
lib/libc/db/hash/hash.c
717
for (bucket = hashp->cbucket;
lib/libc/db/hash/hash.c
718
bucket <= hashp->MAX_BUCKET;
lib/libc/db/hash/hash.c
719
bucket++, hashp->cndx = 1) {
lib/libc/db/hash/hash.c
720
bufp = __get_buf(hashp, bucket, NULL, 0);
lib/libc/db/hash/hash.c
728
hashp->cbucket = bucket;
lib/libc/db/hash/hash.c
856
unsigned int n, bucket;
lib/libc/db/hash/hash.c
859
bucket = n & hashp->HIGH_MASK;
lib/libc/db/hash/hash.c
860
if (bucket > hashp->MAX_BUCKET)
lib/libc/db/hash/hash.c
861
bucket = bucket & hashp->LOW_MASK;
lib/libc/db/hash/hash.c
862
return (bucket);
lib/libc/db/hash/hash_page.c
515
__get_page(HTAB *hashp, char *p, uint32_t bucket, int is_bucket, int is_disk,
lib/libc/db/hash/hash_page.c
529
page = BUCKET_TO_PAGE(bucket);
lib/libc/db/hash/hash_page.c
531
page = OADDR_TO_PAGE(bucket);
lib/libc/db/hash/hash_page.c
570
__put_page(HTAB *hashp, char *p, uint32_t bucket, int is_bucket, int is_bitmap)
lib/libc/db/hash/hash_page.c
593
page = BUCKET_TO_PAGE(bucket);
lib/libc/db/hash/hash_page.c
595
page = OADDR_TO_PAGE(bucket);
libexec/bootpd/hash.c
323
unsigned bucket;
libexec/bootpd/hash.c
338
bucket = hashtable->bucketnum + 1;
libexec/bootpd/hash.c
339
while ((bucket < hashtable->size) &&
libexec/bootpd/hash.c
340
!(memberptr = (hashtable->table)[bucket])) {
libexec/bootpd/hash.c
341
bucket++;
libexec/bootpd/hash.c
347
if (bucket >= hashtable->size) {
libexec/bootpd/hash.c
361
hashtable->bucketnum = bucket;
libexec/rtld-elf/malloc.c
138
int bucket;
libexec/rtld-elf/malloc.c
157
bucket = 0;
libexec/rtld-elf/malloc.c
161
bucket++;
libexec/rtld-elf/malloc.c
163
pagebucket = bucket;
libexec/rtld-elf/malloc.c
173
bucket = 0;
libexec/rtld-elf/malloc.c
176
bucket = 1;
libexec/rtld-elf/malloc.c
181
bucket = pagebucket;
libexec/rtld-elf/malloc.c
187
bucket++;
libexec/rtld-elf/malloc.c
193
if ((op = nextf[bucket]) == NULL) {
libexec/rtld-elf/malloc.c
194
morecore(bucket);
libexec/rtld-elf/malloc.c
195
if ((op = nextf[bucket]) == NULL)
libexec/rtld-elf/malloc.c
199
nextf[bucket] = op->ov_next;
libexec/rtld-elf/malloc.c
201
op->ov_index = bucket;
libexec/rtld-elf/malloc.c
203
nmalloc[bucket]++;
libexec/rtld-elf/malloc.c
236
morecore(int bucket)
libexec/rtld-elf/malloc.c
247
sz = 1LU << (bucket + 3);
libexec/rtld-elf/malloc.c
271
nextf[bucket] = op;
libexec/rtld-elf/rtld.c
4202
Elf32_Word bucket;
libexec/rtld-elf/rtld.c
4224
bucket = obj->buckets_gnu[req->hash_gnu % obj->nbuckets_gnu];
libexec/rtld-elf/rtld.c
4225
if (bucket == 0)
libexec/rtld-elf/rtld.c
4227
hashval = &obj->chain_zero_gnu[bucket];
sys/dev/drm/amd/amdgpu/amdgpu_bo_list.c
186
struct list_head bucket[AMDGPU_BO_LIST_NUM_BUCKETS];
sys/dev/drm/amd/amdgpu/amdgpu_bo_list.c
191
INIT_LIST_HEAD(&bucket[i]);
sys/dev/drm/amd/amdgpu/amdgpu_bo_list.c
203
list_add_tail(&e->tv.head, &bucket[priority]);
sys/dev/drm/amd/amdgpu/amdgpu_bo_list.c
210
list_splice(&bucket[i], validated);
sys/dev/drm/radeon/radeon_cs.c
42
struct list_head bucket[RADEON_CS_NUM_BUCKETS];
sys/dev/drm/radeon/radeon_cs.c
50
INIT_LIST_HEAD(&b->bucket[i]);
sys/dev/drm/radeon/radeon_cs.c
61
list_add_tail(item, &b->bucket[min(priority, RADEON_CS_MAX_PRIORITY)]);
sys/dev/drm/radeon/radeon_cs.c
71
list_splice(&b->bucket[i], out_list);
sys/net/wg/wg_cookie.c
540
uint64_t bucket, tokens;
sys/net/wg/wg_cookie.c
560
bucket = siphash13(rl->rl_secret, &key, len) & RATELIMIT_MASK;
sys/net/wg/wg_cookie.c
563
LIST_FOREACH(r, &rl->rl_table[bucket], r_entry) {
sys/net/wg/wg_cookie.c
607
LIST_INSERT_HEAD(&rl->rl_table[bucket], r, r_entry);
sys/netgraph/bridge/ng_bridge.c
478
int i = 0, bucket;
sys/netgraph/bridge/ng_bridge.c
488
for (bucket = 0; bucket < priv->numBuckets; bucket++) {
sys/netgraph/bridge/ng_bridge.c
489
SLIST_FOREACH(hent, &priv->tab[bucket], next)
sys/netgraph/bridge/ng_bridge.c
784
const int bucket = HASH(addr, priv->hashMask);
sys/netgraph/bridge/ng_bridge.c
787
SLIST_FOREACH(hent, &priv->tab[bucket], next) {
sys/netgraph/bridge/ng_bridge.c
802
const int bucket = HASH(addr, priv->hashMask);
sys/netgraph/bridge/ng_bridge.c
809
SLIST_FOREACH(hent, &priv->tab[bucket], next) {
sys/netgraph/bridge/ng_bridge.c
825
SLIST_INSERT_HEAD(&priv->tab[bucket], hent, next);
sys/netgraph/bridge/ng_bridge.c
903
int bucket;
sys/netgraph/bridge/ng_bridge.c
905
for (bucket = 0; bucket < priv->numBuckets; bucket++) {
sys/netgraph/bridge/ng_bridge.c
906
struct ng_bridge_hent **hptr = &SLIST_FIRST(&priv->tab[bucket]);
sys/netgraph/bridge/ng_bridge.c
934
int bucket;
sys/netgraph/bridge/ng_bridge.c
953
for (bucket = 0; bucket < priv->numBuckets; bucket++) {
sys/netgraph/bridge/ng_bridge.c
954
struct ng_bridge_hent **hptr = &SLIST_FIRST(&priv->tab[bucket]);
sys/netgraph7/bridge/ng_bridge.c
481
int i = 0, bucket;
sys/netgraph7/bridge/ng_bridge.c
491
for (bucket = 0; bucket < priv->numBuckets; bucket++) {
sys/netgraph7/bridge/ng_bridge.c
492
SLIST_FOREACH(hent, &priv->tab[bucket], next)
sys/netgraph7/bridge/ng_bridge.c
825
const int bucket = HASH(addr, priv->hashMask);
sys/netgraph7/bridge/ng_bridge.c
828
SLIST_FOREACH(hent, &priv->tab[bucket], next) {
sys/netgraph7/bridge/ng_bridge.c
843
const int bucket = HASH(addr, priv->hashMask);
sys/netgraph7/bridge/ng_bridge.c
849
SLIST_FOREACH(hent, &priv->tab[bucket], next) {
sys/netgraph7/bridge/ng_bridge.c
865
SLIST_INSERT_HEAD(&priv->tab[bucket], hent, next);
sys/netgraph7/bridge/ng_bridge.c
943
int bucket;
sys/netgraph7/bridge/ng_bridge.c
945
for (bucket = 0; bucket < priv->numBuckets; bucket++) {
sys/netgraph7/bridge/ng_bridge.c
946
struct ng_bridge_hent **hptr = &SLIST_FIRST(&priv->tab[bucket]);
sys/netgraph7/bridge/ng_bridge.c
971
int bucket;
sys/netgraph7/bridge/ng_bridge.c
977
for (bucket = 0; bucket < priv->numBuckets; bucket++) {
sys/netgraph7/bridge/ng_bridge.c
978
struct ng_bridge_hent **hptr = &SLIST_FIRST(&priv->tab[bucket]);
sys/netinet/in_pcb.c
1888
struct inpcbhead *bucket;
sys/netinet/in_pcb.c
1911
bucket = &pcbinfo->hashbase[INP_PCBCONNHASH(hashkey_faddr,
sys/netinet/in_pcb.c
1913
LIST_INSERT_HEAD(bucket, inp, inp_hash);
sys/netinet/in_pcb.c
2263
struct inpcontainerhead *bucket;
sys/netinet/in_pcb.c
2269
bucket = &pcbinfo->wildcardhashbase[
sys/netinet/in_pcb.c
2274
LIST_INSERT_HEAD(bucket, ic, ic_list);
sys/netinet/ip_flow.c
114
#define IPFLOW_INSERT(pcpu, bucket, ipf) \
sys/netinet/ip_flow.c
118
LIST_INSERT_HEAD((bucket), (ipf), ipf_hash); \
sys/netinet/tcp_syncache.c
301
struct syncache_head *bucket;
sys/netinet/tcp_syncache.c
303
bucket = &syncache_percpu->hashbase[i];
sys/netinet/tcp_syncache.c
304
TAILQ_INIT(&bucket->sch_bucket);
sys/netinet/tcp_syncache.c
305
bucket->sch_length = 0;
sys/netinet/tcp_syncache.c
415
struct syncache_head *bucket;
sys/netinet/tcp_syncache.c
418
bucket = &syncache_percpu->hashbase[i];
sys/netinet/tcp_syncache.c
419
TAILQ_FOREACH(sc, &bucket->sch_bucket, sc_hash) {
sys/netproto/802_11/wlan/ieee80211_rssadapt.c
249
thrs = &ra->ra_rate_thresh[bucket(pktlen)];
sys/netproto/802_11/wlan/ieee80211_rssadapt.c
281
thrs = &ra->ra_rate_thresh[bucket(pktlen)];
sys/netproto/802_11/wlan/ieee80211_rssadapt.c
301
thrs = &ra->ra_rate_thresh[bucket(pktlen)];
test/stress/fsstress/fsstress.c
1012
int bucket;
test/stress/fsstress/fsstress.c
1020
bucket = (id ^ namerand) % (sizeof(buckets) / sizeof(buckets[0]));
test/stress/fsstress/fsstress.c
1021
padmod = buckets[bucket] + 1 - i;
usr.bin/mkstr/mkstr.c
263
} *bucket[NBUCKETS];
usr.bin/mkstr/mkstr.c
282
for (hp = bucket[i]; hp != NULL; hp = hp->hnext)
usr.bin/mkstr/mkstr.c
296
hp->hnext = bucket[i];
usr.bin/mkstr/mkstr.c
303
bucket[i] = hp;
usr.bin/top/hash.c
1002
bucket_t *bucket;
usr.bin/top/hash.c
1019
bucket = &(ht->buckets[string_hash(ht, key)]);
usr.bin/top/hash.c
1022
ll = &(bucket->list);
usr.bin/top/hash.c
1041
ll_add(&(bucket->list), newli);
usr.bin/top/hash.c
1065
bucket_t *bucket;
usr.bin/top/hash.c
1073
bucket = &(ht->buckets[string_hash(ht, key)]);
usr.bin/top/hash.c
1076
ll = &(bucket->list);
usr.bin/top/hash.c
1099
ll_add(&(bucket->list), li);
usr.bin/top/hash.c
1117
bucket_t *bucket;
usr.bin/top/hash.c
1125
if ((bucket = &(ht->buckets[string_hash(ht, key)])) != NULL)
usr.bin/top/hash.c
1127
ll = &(bucket->list);
usr.bin/top/hash.c
1155
bucket_t *bucket;
usr.bin/top/hash.c
1164
if ((bucket = &(ht->buckets[string_hash(ht, key)])) != NULL)
usr.bin/top/hash.c
1166
ll = &(bucket->list);
usr.bin/top/hash.c
1340
bucket_t *bucket;
usr.bin/top/hash.c
1357
bucket = &(ht->buckets[((key.k_thr * 10000 + key.k_pid) % ht->num_buckets)]);
usr.bin/top/hash.c
1360
ll = &(bucket->list);
usr.bin/top/hash.c
1379
ll_add(&(bucket->list), newli);
usr.bin/top/hash.c
1403
bucket_t *bucket;
usr.bin/top/hash.c
1411
bucket = &(ht->buckets[((key.k_thr * 10000 + key.k_pid) % ht->num_buckets)]);
usr.bin/top/hash.c
1414
ll = &(bucket->list);
usr.bin/top/hash.c
1437
ll_add(&(bucket->list), li);
usr.bin/top/hash.c
1455
bucket_t *bucket;
usr.bin/top/hash.c
1463
if ((bucket = &(ht->buckets[((key.k_thr * 10000 + key.k_pid) % ht->num_buckets)])) != NULL)
usr.bin/top/hash.c
1465
ll = &(bucket->list);
usr.bin/top/hash.c
1493
bucket_t *bucket;
usr.bin/top/hash.c
1502
if ((bucket = &(ht->buckets[((key.k_thr * 10000 + key.k_pid) % ht->num_buckets)])) != NULL)
usr.bin/top/hash.c
1504
ll = &(bucket->list);
usr.bin/top/hash.c
1679
bucket_t *bucket;
usr.bin/top/hash.c
1696
bucket = &(ht->buckets[(key % ht->num_buckets)]);
usr.bin/top/hash.c
1699
ll = &(bucket->list);
usr.bin/top/hash.c
1718
ll_add(&(bucket->list), newli);
usr.bin/top/hash.c
1742
bucket_t *bucket;
usr.bin/top/hash.c
1750
bucket = &(ht->buckets[(key % ht->num_buckets)]);
usr.bin/top/hash.c
1753
ll = &(bucket->list);
usr.bin/top/hash.c
1776
ll_add(&(bucket->list), li);
usr.bin/top/hash.c
1794
bucket_t *bucket;
usr.bin/top/hash.c
1802
if ((bucket = &(ht->buckets[(key % ht->num_buckets)])) != NULL)
usr.bin/top/hash.c
1804
ll = &(bucket->list);
usr.bin/top/hash.c
1832
bucket_t *bucket;
usr.bin/top/hash.c
1841
if ((bucket = &(ht->buckets[(key % ht->num_buckets)])) != NULL)
usr.bin/top/hash.c
1843
ll = &(bucket->list);
usr.bin/top/hash.c
267
register bucket_t *bucket;
usr.bin/top/hash.c
269
bucket = ht->buckets;
usr.bin/top/hash.c
272
cnt += bucket->list.count;
usr.bin/top/hash.c
273
bucket++;
usr.bin/top/hash.c
292
register bucket_t *bucket;
usr.bin/top/hash.c
296
bucket = ht->buckets;
usr.bin/top/hash.c
300
idx = bucket->list.count;
usr.bin/top/hash.c
302
bucket++;
usr.bin/top/hash.c
326
bucket_t *bucket;
usr.bin/top/hash.c
343
bucket = &(ht->buckets[(key % ht->num_buckets)]);
usr.bin/top/hash.c
346
ll = &(bucket->list);
usr.bin/top/hash.c
365
ll_add(&(bucket->list), newli);
usr.bin/top/hash.c
389
bucket_t *bucket;
usr.bin/top/hash.c
397
bucket = &(ht->buckets[(key % ht->num_buckets)]);
usr.bin/top/hash.c
400
ll = &(bucket->list);
usr.bin/top/hash.c
423
ll_add(&(bucket->list), li);
usr.bin/top/hash.c
441
bucket_t *bucket;
usr.bin/top/hash.c
449
if ((bucket = &(ht->buckets[(key % ht->num_buckets)])) != NULL)
usr.bin/top/hash.c
451
ll = &(bucket->list);
usr.bin/top/hash.c
479
bucket_t *bucket;
usr.bin/top/hash.c
488
if ((bucket = &(ht->buckets[(key % ht->num_buckets)])) != NULL)
usr.bin/top/hash.c
490
ll = &(bucket->list);
usr.bin/top/hash.c
664
bucket_t *bucket;
usr.bin/top/hash.c
681
bucket = &(ht->buckets[(key % ht->num_buckets)]);
usr.bin/top/hash.c
684
ll = &(bucket->list);
usr.bin/top/hash.c
703
ll_add(&(bucket->list), newli);
usr.bin/top/hash.c
727
bucket_t *bucket;
usr.bin/top/hash.c
735
bucket = &(ht->buckets[(key % ht->num_buckets)]);
usr.bin/top/hash.c
738
ll = &(bucket->list);
usr.bin/top/hash.c
761
ll_add(&(bucket->list), li);
usr.bin/top/hash.c
779
bucket_t *bucket;
usr.bin/top/hash.c
787
if ((bucket = &(ht->buckets[(key % ht->num_buckets)])) != NULL)
usr.bin/top/hash.c
789
ll = &(bucket->list);
usr.bin/top/hash.c
817
bucket_t *bucket;
usr.bin/top/hash.c
826
if ((bucket = &(ht->buckets[(key % ht->num_buckets)])) != NULL)
usr.bin/top/hash.c
828
ll = &(bucket->list);
usr.bin/xstr/xstr.c
338
} bucket[BUCKETS];
usr.bin/xstr/xstr.c
346
hp = hp0 = &bucket[lastchr(str) & 0177];
usr.bin/xstr/xstr.c
374
for (hp = bucket[i].hnext; hp != NULL; hp = hp->hnext)
usr.bin/xstr/xstr.c
385
for (hp = bucket[i].hnext; hp != NULL; hp = hp->hnext) {
usr.sbin/installer/libaura/dict.c
97
d->b = malloc(sizeof(struct bucket *) * num_buckets);
usr.sbin/ppp/mbuf.c
64
} *bucket[(M_MAXLEN + sizeof(struct mbuf)) / BUCKET_HASH];
usr.sbin/ppp/mbuf.c
67
#define M_BUCKET(sz) (bucket + M_BINDEX(sz))