Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/include/internal/
H A Dhashtable.h287 void ossl_ht_free(HT *htable);
292 void ossl_ht_read_lock(HT *htable);
297 void ossl_ht_write_lock(HT *htable);
302 void ossl_ht_read_unlock(HT *htable);
307 void ossl_ht_write_unlock(HT *htable);
312 int ossl_ht_flush(HT *htable);
319 int ossl_ht_insert(HT *htable, HT_KEY *key, HT_VALUE *data,
326 int ossl_ht_delete(HT *htable, HT_KEY *key);
331 size_t ossl_ht_count(HT *htable);
341 void ossl_ht_foreach_until(HT *htable, int (*cb)(HT_VALUE *obj, void *arg),
[all …]
/freebsd/crypto/openssl/crypto/hashtable/
H A Dhashtable.c234 void ossl_ht_read_lock(HT *htable) in ossl_ht_read_lock() argument
236 ossl_rcu_read_lock(htable->lock); in ossl_ht_read_lock()
239 void ossl_ht_read_unlock(HT *htable) in ossl_ht_read_unlock() argument
241 ossl_rcu_read_unlock(htable->lock); in ossl_ht_read_unlock()
244 void ossl_ht_write_lock(HT *htable) in ossl_ht_write_lock() argument
246 ossl_rcu_write_lock(htable->lock); in ossl_ht_write_lock()
247 htable->wpd.need_sync = 0; in ossl_ht_write_lock()
250 void ossl_ht_write_unlock(HT *htable) in ossl_ht_write_unlock() argument
252 int need_sync = htable->wpd.need_sync; in ossl_ht_write_unlock()
254 htable->wpd.need_sync = 0; in ossl_ht_write_unlock()
[all …]
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_ht_new.pod24 void ossl_ht_free(HT *htable);
25 void ossl_ht_read_lock(HT *htable);
26 void ossl_ht_read_unlock(HT *htable);
27 void ossl_ht_write_lock(HT *htable);
28 void ossl_ht_write_unlock(HT *htable);
29 int ossl_ht_flush(HT *htable);
30 int ossl_ht_insert(HT *htable, HT_KEY *key, HT_VALUE *data, HT_VALUE **olddata);
31 int ossl_ht_delete(HT *htable, HT_KEY *key);
32 size_t ossl_ht_count(HT *htable);
33 void ossl_ht_foreach_until(HT *htable, int (*cb)(HT_VALUE *obj, void *arg), void *arg);
[all …]
/freebsd/usr.sbin/makefs/
H A Dwalk.c639 } *htable; in link_check() local
658 if (!htable) in link_check()
666 ohtable = htable; in link_check()
667 htable = ecalloc(htmask+1, sizeof(*htable)); in link_check()
687 while (htable[h].data) { in link_check()
688 if ((htable[h].data->st.st_ino == entry->st.st_ino) && in link_check()
689 (htable[h].data->st.st_dev == entry->st.st_dev)) { in link_check()
690 return htable[h].data; in link_check()
696 htable[h].data = entry; in link_check()
/freebsd/contrib/ofed/libibnetdisc/
H A Dinternal.h81 void add_to_portlid_hash(ibnd_port_t * port, GHashTable *htable);
H A Dibnetdisc.c688 void add_to_portlid_hash(ibnd_port_t * port, GHashTable *htable) in add_to_portlid_hash() argument
698 g_hash_table_insert(htable, GINT_TO_POINTER(lid), port); in add_to_portlid_hash()
/freebsd/sys/contrib/openzfs/module/icp/algs/modes/
H A Dgcm.c1250 uint64_t *htable = ctx->gcm_Htable; in gcm_mode_encrypt_contiguous_blocks_avx() local
1315 datap, ct_buf, chunk_size, key, cb, htable, ghash); in gcm_mode_encrypt_contiguous_blocks_avx()
1338 done = encrypt_blocks(datap, ct_buf, bleft, key, cb, htable, in gcm_mode_encrypt_contiguous_blocks_avx()
1498 uint64_t *htable = ctx->gcm_Htable; in gcm_decrypt_final_avx() local
1512 (const void *)key, ctx->gcm_cb, htable, ghash); in gcm_decrypt_final_avx()
1524 (const void *)key, ctx->gcm_cb, htable, ghash); in gcm_decrypt_final_avx()
/freebsd/usr.sbin/crunch/examples/
H A Dreally-big.conf70 progs dev_mkdb diskpart edquota flcopy gettable grfinfo hilinfo htable inetd
/freebsd/crypto/openssl/doc/man3/
H A DOPENSSL_LH_COMPFUNC.pod140 LHASH_OF(TYPE) *htable;
142 htable = B<lh_I<TYPE>_new>(LHASH_HASH_FN(stuff), LHASH_COMP_FN(stuff));