Searched refs:num_buckets (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.h129 bool NeedsUpdate(uint32_t count, uint32_t num_buckets, argument
131 return m_count != count || m_num_buckets != num_buckets ||
135 void UpdateSignature(uint32_t count, uint32_t num_buckets, argument
138 m_num_buckets = num_buckets;
H A DAppleObjCRuntimeV1.cpp353 const uint32_t num_buckets = data.GetU32(&offset); local
355 if (m_hash_signature.NeedsUpdate(count, num_buckets, buckets_ptr)) {
356 m_hash_signature.UpdateSignature(count, num_buckets, buckets_ptr);
358 const uint32_t data_size = num_buckets * 2 * sizeof(uint32_t);
365 for (uint32_t bucket_idx = 0; bucket_idx < num_buckets;
/freebsd-current/contrib/libucl/uthash/
H A Duthash.h100 HASH_FCN(keyptr,keylen, (head)->hh.tbl->num_buckets, _hf_hashv, _hf_bkt); \
149 (head)->hh.tbl->num_buckets = HASH_INITIAL_NUM_BUCKETS; \
191 HASH_FCN(keyptr,keylen_in, (head)->hh.tbl->num_buckets, \
222 (head)->hh.tbl->num_buckets*sizeof(struct UT_hash_bucket) ); \
244 HASH_TO_BKT( _hd_hh_del->hashv, (head)->hh.tbl->num_buckets, _hd_bkt); \
287 for( _bkt_i = 0; _bkt_i < (head)->hh.tbl->num_buckets; _bkt_i++) { \
445 2 * tbl->num_buckets * sizeof(struct UT_hash_bucket)); \
448 2 * tbl->num_buckets * sizeof(struct UT_hash_bucket)); \
451 ((tbl->num_items & ((tbl->num_buckets*2)-1)) ? 1 : 0); \
453 for(_he_bkt_i = 0; _he_bkt_i < tbl->num_buckets; _he_bkt_
678 unsigned num_buckets, log2_num_buckets; member in struct:UT_hash_table
[all...]
/freebsd-current/contrib/elftoolchain/common/
H A Duthash.h101 HASH_FCN(keyptr,keylen, (head)->hh.tbl->num_buckets, _hf_hashv, _hf_bkt); \
149 (head)->hh.tbl->num_buckets = HASH_INITIAL_NUM_BUCKETS; \
181 HASH_FCN(keyptr,keylen_in, (head)->hh.tbl->num_buckets, \
212 (head)->hh.tbl->num_buckets*sizeof(struct UT_hash_bucket) ); \
234 HASH_TO_BKT( _hd_hh_del->hashv, (head)->hh.tbl->num_buckets, _hd_bkt); \
271 for( _bkt_i = 0; _bkt_i < (head)->hh.tbl->num_buckets; _bkt_i++) { \
658 2 * tbl->num_buckets * sizeof(struct UT_hash_bucket)); \
661 2 * tbl->num_buckets * sizeof(struct UT_hash_bucket)); \
664 ((tbl->num_items & ((tbl->num_buckets*2)-1)) ? 1 : 0); \
666 for(_he_bkt_i = 0; _he_bkt_i < tbl->num_buckets; _he_bkt_
877 unsigned num_buckets, log2_num_buckets; member in struct:UT_hash_table
[all...]
/freebsd-current/sys/net/route/
H A Dnhop.c80 uint32_t num_buckets, num_items; local
89 num_buckets = 16;
90 alloc_size = CHT_SLIST_GET_RESIZE_SIZE(num_buckets);
92 CHT_SLIST_INIT(&ctl->nh_head, ptr, num_buckets);
H A Dnhgrp.c279 uint32_t num_buckets; local
284 num_buckets = 8;
285 alloc_size = CHT_SLIST_GET_RESIZE_SIZE(num_buckets);
297 CHT_SLIST_INIT(&ctl->gr_head, cht_ptr, num_buckets);
/freebsd-current/contrib/bearssl/test/
H A Dtest_x509.c202 size_t num_buckets; member in struct:__anon82
213 ht->num_buckets = 8;
214 ht->buckets = xmalloc(ht->num_buckets * sizeof(ht_elt *));
215 for (u = 0; u < ht->num_buckets; u ++) {
270 n = ht->num_buckets;
293 ht->num_buckets = n2;
304 k = (size_t)(hc & ((uint32_t)ht->num_buckets - 1));
332 if (ht->size > ht->num_buckets) {
355 k = (size_t)(hc & ((uint32_t)ht->num_buckets - 1));
369 for (u = 0; u < ht->num_buckets;
[all...]
/freebsd-current/sys/netlink/route/
H A Dnexthop.c605 uint32_t num_buckets = 16; local
606 size_t alloc_size = CHT_SLIST_GET_RESIZE_SIZE(num_buckets);
618 CHT_SLIST_INIT(&ctl->un_head, ptr, num_buckets);
/freebsd-current/sys/dev/ena/
H A Dena.c1736 int num_buckets = rss_getnumbuckets(); local
1749 last_bind = (last_bind + adapter->num_io_queues) % num_buckets;
1776 cur_bind = (cur_bind + 1) % num_buckets;

Completed in 94 milliseconds