HomeSort by relevance Sort by last modified time
    Searched defs:hash_fn (Results 1 - 17 of 17) sorted by null

  /external/libchrome/base/
hash.h 19 std::hash<std::string> hash_fn; local
20 return hash_fn(str);
  /system/bt/service/common/bluetooth/
uuid.h 105 std::hash<std::string> hash_fn; local
106 return hash_fn(std::string((char *)uuid_bytes.data(), uuid_bytes.size()));
  /system/update_engine/payload_generator/
block_mapping.cc 35 std::hash<string> hash_fn; local
36 return hash_fn(string(blob.begin(), blob.end()));
  /system/bt/osi/src/
hash_map.c 36 hash_index_fn hash_fn; member in struct:hash_map_t
55 hash_index_fn hash_fn,
60 assert(hash_fn != NULL);
68 hash_map->hash_fn = hash_fn;
85 hash_index_fn hash_fn,
89 return hash_map_new_internal(num_bucket, hash_fn, key_fn, data_fn, equality_fn, &allocator_calloc);
118 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket;
129 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket;
161 hash_index_t hash_key = hash_map->hash_fn(key) % hash_map->num_bucket
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
assoc_container.hpp 67 typename __gnu_cxx::typelist::create4<Hash_Fn, Eq_Fn, Resize_Policy, \
80 * @tparam Hash_Fn Hashing functor.
97 typename Hash_Fn,
167 basic_hash_table<Key, Mapped, Hash_Fn, Eq_Fn, Resize_Policy, Store_Hash, \
177 * @tparam Hash_Fn Hashing functor.
180 * If Hash_Fn is not null_type, then this
187 * If Hash_Fn is null_type, then the
198 typename Hash_Fn = typename detail::default_hash_fn<Key>::type,
211 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::cc_hash_table
375 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::gp_hash_table
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/
assoc_container.hpp 67 typename __gnu_cxx::typelist::create4<Hash_Fn, Eq_Fn, Resize_Policy, \
80 * @tparam Hash_Fn Hashing functor.
97 typename Hash_Fn,
167 basic_hash_table<Key, Mapped, Hash_Fn, Eq_Fn, Resize_Policy, Store_Hash, \
177 * @tparam Hash_Fn Hashing functor.
180 * If Hash_Fn is not null_type, then this
187 * If Hash_Fn is null_type, then the
198 typename Hash_Fn = typename detail::default_hash_fn<Key>::type,
211 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::cc_hash_table
375 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::gp_hash_table
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/
assoc_container.hpp 67 typename __gnu_cxx::typelist::create4<Hash_Fn, Eq_Fn, Resize_Policy, \
80 * @tparam Hash_Fn Hashing functor.
97 typename Hash_Fn,
167 basic_hash_table<Key, Mapped, Hash_Fn, Eq_Fn, Resize_Policy, Store_Hash, \
177 * @tparam Hash_Fn Hashing functor.
180 * If Hash_Fn is not null_type, then this
187 * If Hash_Fn is null_type, then the
198 typename Hash_Fn = typename detail::default_hash_fn<Key>::type,
211 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::cc_hash_table
375 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::gp_hash_table
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/
assoc_container.hpp 67 typename __gnu_cxx::typelist::create4<Hash_Fn, Eq_Fn, Resize_Policy, \
80 * @tparam Hash_Fn Hashing functor.
97 typename Hash_Fn,
167 basic_hash_table<Key, Mapped, Hash_Fn, Eq_Fn, Resize_Policy, Store_Hash, \
177 * @tparam Hash_Fn Hashing functor.
180 * If Hash_Fn is not null_type, then this
187 * If Hash_Fn is null_type, then the
198 typename Hash_Fn = typename detail::default_hash_fn<Key>::type,
211 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::cc_hash_table
375 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::gp_hash_table
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 45 #include <ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp>
70 template<typename Key, typename Mapped, typename Hash_Fn, \
75 PB_DS_CC_HASH_NAME<Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, \
82 ranged_hash_fn<Key, Hash_Fn, _Alloc, Comb_Hash_Fn, Store_Hash>
104 * @tparam Hash_Fn Hashing functor.
116 * If Hash_Fn is not null_type, then this
133 typename Hash_Fn,
194 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::detail::PB_DS_CC_HASH_NAME
243 PB_DS_CC_HASH_NAME(const Hash_Fn&)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 42 #include <ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp>
68 template<typename Key, typename Mapped, typename Hash_Fn, typename Eq_Fn, \
73 PB_DS_GP_HASH_NAME<Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, \
80 ranged_probe_fn<Key, Hash_Fn, _Alloc, Comb_Probe_Fn, Probe_Fn, Store_Hash>
102 * @tparam Hash_Fn Hashing functor.
114 * If Hash_Fn is not null_type, then this
135 typename Hash_Fn,
201 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::detail::PB_DS_GP_HASH_NAME
253 PB_DS_GP_HASH_NAME(const Hash_Fn&)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 45 #include <ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp>
70 template<typename Key, typename Mapped, typename Hash_Fn, \
75 PB_DS_CC_HASH_NAME<Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, \
82 ranged_hash_fn<Key, Hash_Fn, _Alloc, Comb_Hash_Fn, Store_Hash>
104 * @tparam Hash_Fn Hashing functor.
116 * If Hash_Fn is not null_type, then this
133 typename Hash_Fn,
194 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::detail::PB_DS_CC_HASH_NAME
243 PB_DS_CC_HASH_NAME(const Hash_Fn&)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 42 #include <ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp>
68 template<typename Key, typename Mapped, typename Hash_Fn, typename Eq_Fn, \
73 PB_DS_GP_HASH_NAME<Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, \
80 ranged_probe_fn<Key, Hash_Fn, _Alloc, Comb_Probe_Fn, Probe_Fn, Store_Hash>
102 * @tparam Hash_Fn Hashing functor.
114 * If Hash_Fn is not null_type, then this
135 typename Hash_Fn,
201 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::detail::PB_DS_GP_HASH_NAME
253 PB_DS_GP_HASH_NAME(const Hash_Fn&)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 45 #include <ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp>
70 template<typename Key, typename Mapped, typename Hash_Fn, \
75 PB_DS_CC_HASH_NAME<Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, \
82 ranged_hash_fn<Key, Hash_Fn, _Alloc, Comb_Hash_Fn, Store_Hash>
104 * @tparam Hash_Fn Hashing functor.
116 * If Hash_Fn is not null_type, then this
133 typename Hash_Fn,
194 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::detail::PB_DS_CC_HASH_NAME
243 PB_DS_CC_HASH_NAME(const Hash_Fn&)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 42 #include <ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp>
68 template<typename Key, typename Mapped, typename Hash_Fn, typename Eq_Fn, \
73 PB_DS_GP_HASH_NAME<Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, \
80 ranged_probe_fn<Key, Hash_Fn, _Alloc, Comb_Probe_Fn, Probe_Fn, Store_Hash>
102 * @tparam Hash_Fn Hashing functor.
114 * If Hash_Fn is not null_type, then this
135 typename Hash_Fn,
201 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::detail::PB_DS_GP_HASH_NAME
253 PB_DS_GP_HASH_NAME(const Hash_Fn&)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/cc_hash_table_map_/
cc_ht_map_.hpp 45 #include <ext/pb_ds/detail/hash_fn/ranged_hash_fn.hpp>
70 template<typename Key, typename Mapped, typename Hash_Fn, \
75 PB_DS_CC_HASH_NAME<Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, \
82 ranged_hash_fn<Key, Hash_Fn, _Alloc, Comb_Hash_Fn, Store_Hash>
104 * @tparam Hash_Fn Hashing functor.
116 * If Hash_Fn is not null_type, then this
133 typename Hash_Fn,
194 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::detail::PB_DS_CC_HASH_NAME
243 PB_DS_CC_HASH_NAME(const Hash_Fn&)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/gp_hash_table_map_/
gp_ht_map_.hpp 42 #include <ext/pb_ds/detail/hash_fn/ranged_probe_fn.hpp>
68 template<typename Key, typename Mapped, typename Hash_Fn, typename Eq_Fn, \
73 PB_DS_GP_HASH_NAME<Key, Mapped, Hash_Fn, Eq_Fn, _Alloc, \
80 ranged_probe_fn<Key, Hash_Fn, _Alloc, Comb_Probe_Fn, Probe_Fn, Store_Hash>
102 * @tparam Hash_Fn Hashing functor.
114 * If Hash_Fn is not null_type, then this
135 typename Hash_Fn,
201 typedef Hash_Fn hash_fn; typedef in class:__gnu_pbds::detail::PB_DS_GP_HASH_NAME
253 PB_DS_GP_HASH_NAME(const Hash_Fn&)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 240 unsigned int (*hash_fn)(TDB_DATA *key); member in struct:tdb_context
745 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
753 return tdb_lock_nonblock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
759 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK | TDB_MARK_LOCK);
765 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK | TDB_MARK_LOCK);
770 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_WRLCK);
775 return tdb_lock(tdb, BUCKET(tdb->hash_fn(&key)), F_RDLCK);
780 return tdb_unlock(tdb, BUCKET(tdb->hash_fn(&key)), F_RDLCK);
    [all...]

Completed in 699 milliseconds