Home
last modified time | relevance | path

Searched refs:hash_fn (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-3.5.0/components/bt/common/osi/
Dhash_map.c34 hash_index_fn hash_fn; member
52 hash_index_fn hash_fn, in hash_map_new_internal() argument
57 assert(hash_fn != NULL); in hash_map_new_internal()
64 hash_map->hash_fn = hash_fn; in hash_map_new_internal()
80 hash_index_fn hash_fn, in hash_map_new() argument
85 return hash_map_new_internal(num_bucket, hash_fn, key_fn, data_fn, equality_fn); in hash_map_new()
119 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket; in hash_map_has_key()
131 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket; in hash_map_set()
167 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket; in hash_map_erase()
189 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket; in hash_map_get()
/hal_espressif-3.5.0/components/bt/common/osi/include/osi/
Dhash_map.h56 hash_index_fn hash_fn,