HomeSort by relevance Sort by last modified time
    Searched full:hash_index_t (Results 1 - 7 of 7) sorted by null

  /system/bt/osi/src/
hash_functions.c 23 hash_index_t hash_function_naive(const void *key) {
24 return (hash_index_t)key;
27 hash_index_t hash_function_integer(const void *key) {
28 return ((hash_index_t)key) * 2654435761;
31 hash_index_t hash_function_pointer(const void *key) {
32 return ((hash_index_t)key) * 2654435761;
35 hash_index_t hash_function_string(const void *key) {
36 hash_index_t hash = 5381;
hash_map.c 117 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket;
128 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket;
160 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket;
176 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket;
189 for (hash_index_t i = 0; i < hash_map->num_bucket; i++){
201 for (hash_index_t i = 0; i < hash_map->num_bucket; ++i){
  /system/bt/osi/include/
hash_functions.h 23 hash_index_t hash_function_naive(const void *key);
25 hash_index_t hash_function_integer(const void *key);
28 hash_index_t hash_function_pointer(const void *key);
30 hash_index_t hash_function_string(const void *key);
hash_map.h 33 typedef size_t hash_index_t; typedef
36 typedef hash_index_t (*hash_index_fn)(const void *key);
  /system/bt/btcore/src/
bdaddr.c 95 hash_index_t hash_function_bdaddr(const void *key) {
96 hash_index_t hash = 5381;
  /system/bt/osi/test/
hash_map_test.cpp 30 hash_index_t hash_map_fn00(const void *key) {
31 hash_index_t hash_key = (hash_index_t)key;
  /system/bt/btcore/include/
bdaddr.h 60 hash_index_t hash_function_bdaddr(const void *key);

Completed in 209 milliseconds