Home
last modified time | relevance | path

Searched refs:keyp (Results 1 – 6 of 6) sorted by relevance

/f-stack/freebsd/contrib/openzfs/include/os/freebsd/zfs/sys/
H A Dzfs_context_os.h49 #define tsd_create(keyp, destructor) do { \ argument
50 *(keyp) = osd_thread_register((destructor)); \
51 KASSERT(*(keyp) > 0, ("cannot register OSD")); \
54 #define tsd_destroy(keyp) osd_thread_deregister(*(keyp)) argument
/f-stack/dpdk/drivers/common/sfc_efx/base/
H A Defx_lic.c49 __in_bcount(length) caddr_t keyp,
61 caddr_t keyp,
72 __in_bcount(length) caddr_t keyp,
224 __in_bcount(length) caddr_t keyp,
236 caddr_t keyp,
247 __in_bcount(length) caddr_t keyp,
486 __in_bcount(length) caddr_t keyp, in efx_lic_v1v2_validate_key()
535 caddr_t keyp, in efx_lic_v1v2_read_key()
1095 key_type = ((uint8_t *)keyp)[0]; in efx_lic_v3_validate_key()
1127 caddr_t keyp, in efx_lic_v3_read_key()
[all …]
H A Defx.h3684 __in_bcount(length) caddr_t keyp,
3697 caddr_t keyp,
3709 __in_bcount(length) caddr_t keyp,
/f-stack/freebsd/contrib/openzfs/module/os/linux/spl/
H A Dspl-tsd.c215 tsd_hash_add_key(tsd_hash_table_t *table, uint_t *keyp, dtor_func_t dtor) in tsd_hash_add_key() argument
246 entry->he_key = *keyp = table->ht_key; in tsd_hash_add_key()
254 hash = hash_long((ulong_t)*keyp * (ulong_t)DTOR_PID, table->ht_bits); in tsd_hash_add_key()
568 tsd_create(uint_t *keyp, dtor_func_t dtor) in tsd_create() argument
570 ASSERT3P(keyp, !=, NULL); in tsd_create()
571 if (*keyp) in tsd_create()
574 (void) tsd_hash_add_key(tsd_hash_table, keyp, dtor); in tsd_create()
588 tsd_destroy(uint_t *keyp) in tsd_destroy() argument
600 dtor_entry = tsd_hash_search(table, *keyp, DTOR_PID); in tsd_destroy()
638 *keyp = 0; in tsd_destroy()
/f-stack/app/redis-5.0.5/utils/hashtable/
H A Drehashing.c9 unsigned int dictKeyHash(const void *keyp) { in dictKeyHash() argument
10 unsigned long key = (unsigned long)keyp; in dictKeyHash()
/f-stack/freebsd/contrib/openzfs/cmd/zed/
H A Dzed_event.c816 const char **keyp; in _zed_event_add_env_preserve() local
821 for (keyp = env_preserve; *keyp; keyp++) { in _zed_event_add_env_preserve()
822 if ((val = getenv(*keyp))) in _zed_event_add_env_preserve()
823 _zed_event_add_var(eid, zsp, NULL, *keyp, "%s", val); in _zed_event_add_env_preserve()