Home
last modified time | relevance | path

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

/src/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-tsd.c106 hash = hash_long((ulong_t)key * (ulong_t)pid, table->ht_bits); in tsd_hash_search()
189 hash = hash_long((ulong_t)key * (ulong_t)pid, table->ht_bits); in tsd_hash_add()
255 hash = hash_long((ulong_t)*keyp * (ulong_t)DTOR_PID, table->ht_bits); in tsd_hash_add_key()
297 hash = hash_long((ulong_t)PID_KEY * (ulong_t)pid, table->ht_bits); in tsd_hash_add_pid()
416 hash = hash_long((ulong_t)entry->he_key * in tsd_remove_entry()
433 hash = hash_long((ulong_t)pid_entry->he_key * in tsd_remove_entry()
618 hash = hash_long((ulong_t)entry->he_key * in tsd_destroy()
628 hash = hash_long((ulong_t)dtor_entry->he_key * in tsd_destroy()
681 hash = hash_long((ulong_t)entry->he_key * in tsd_exit()
691 hash = hash_long((ulong_t)pid_entry->he_key * in tsd_exit()
/src/sys/compat/linuxkpi/common/include/linux/
H A Dhash.h71 #define hash_long(...) hash_64(__VA_ARGS__) macro
73 #define hash_long(...) hash_32(__VA_ARGS__) macro
H A Dhashtable.h64 hash_long(__VA_ARGS__)
/src/contrib/ofed/libirdma/
H A Dosdep.h56 #define HASH_MIN(v, b) (sizeof(v) <= 4 ? hash_32(v, b) : hash_long(v, b))
/src/sys/dev/irdma/
H A Dosdep.h63 #define HASH_MIN(v, b) (sizeof(v) <= 4 ? hash_32(v, b) : hash_long(v, b))
/src/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_netdev.c214 bucket_idx = hash_long(l, MLX4_EN_FILTER_HASH_SHIFT); in filter_hash_bucket()