HomeSort by relevance Sort by last modified time
    Searched refs:hash (Results 126 - 150 of 3140) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_store_hash_fn_imps.hpp 39 * hash value is stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key, p_e->m_hash); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
60 p_new_e->m_hash = hash;
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_store_hash_fn_imps.hpp 39 * hash value is stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key, p_e->m_hash); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
60 p_new_e->m_hash = hash;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_store_hash_fn_imps.hpp 39 * hash value is stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key, p_e->m_hash); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
60 p_new_e->m_hash = hash;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_store_hash_fn_imps.hpp 39 * hash value is stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key, p_e->m_hash); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
60 p_new_e->m_hash = hash;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_store_hash_fn_imps.hpp 39 * hash value is stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key, p_e->m_hash); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
60 p_new_e->m_hash = hash;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_store_hash_fn_imps.hpp 39 * hash value is stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key, p_e->m_hash); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
60 p_new_e->m_hash = hash;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_store_hash_fn_imps.hpp 39 * hash value is stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key, p_e->m_hash); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
60 p_new_e->m_hash = hash;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_store_hash_fn_imps.hpp 39 * hash value is stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key, p_e->m_hash); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
60 p_new_e->m_hash = hash;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/gp_hash_table_map_/
resize_store_hash_fn_imps.hpp 39 * hash value is stored.
49 size_type hash = ranged_probe_fn_base::operator()(r_key, p_e->m_hash); local
54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
60 p_new_e->m_hash = hash;
  /system/core/libcutils/
hashmap.c 29 int hash; member in struct:Entry
37 int (*hash)(void* key); member in struct:Hashmap
44 int (*hash)(void* key), bool (*equals)(void* keyA, void* keyB)) {
45 assert(hash != NULL);
69 map->hash = hash;
81 int h = map->hash(key);
97 static inline size_t calculateIndex(size_t bucketCount, int hash) {
98 return ((size_t) hash) & (bucketCount - 1);
118 size_t index = calculateIndex(newBucketCount, entry->hash);
190 int hash = hashKey(map, key); local
222 int hash = hashKey(map, key); local
237 int hash = hashKey(map, key); local
253 int hash = hashKey(map, key); local
285 int hash = hashKey(map, key); local
    [all...]
  /external/deqp/framework/delibs/depool/
dePoolHashSet.c 21 * \brief Memory pool hash-set class.
57 /* Test find() on empty hash. */
61 const int* val = deTestHash_find(hash, (deInt16)i);
68 deTestHash_insert(hash, (deInt16)i, -i);
71 DE_TEST_ASSERT(deTestHash_getNumElements(hash) == 5000);
74 const int* val = deTestHash_find(hash, (deInt16)i);
80 deTestHash_delete(hash, (deInt16)i);
82 DE_TEST_ASSERT(deTestHash_getNumElements(hash) == 4000);
85 const int* val = deTestHash_find(hash, (deInt16)i);
94 deTestHash_insert(hash, (deInt16)i, -i)
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_pwd_common.c 26 void eap_pwd_h_update(struct crypto_hash *hash, const u8 *data, size_t len)
28 crypto_hash_update(hash, data, len);
32 void eap_pwd_h_final(struct crypto_hash *hash, u8 *digest)
35 crypto_hash_finish(hash, digest, &len);
43 struct crypto_hash *hash; local
54 hash = crypto_hash_init(CRYPTO_HASH_ALG_HMAC_SHA256,
56 if (hash == NULL)
59 crypto_hash_update(hash, digest, SHA256_MAC_LEN);
60 crypto_hash_update(hash, (u8 *) &i, sizeof(u16));
61 crypto_hash_update(hash, label, labellen)
95 struct crypto_hash *hash; local
292 struct crypto_hash *hash; local
    [all...]
  /external/apache-http/src/org/apache/http/auth/
BasicUserPrincipal.java 67 int hash = LangUtils.HASH_SEED; local
68 hash = LangUtils.hashCode(hash, this.username);
69 return hash;
  /external/e2fsprogs/lib/e2p/
hashstr.c 20 struct hash { struct
25 static struct hash hash_list[] = {
34 struct hash *p;
46 * Returns the hash algorithm, or -1 on error
50 struct hash *p;
  /external/elfutils/src/libelf/
elf_hash.c 0 /* Hash function used in ELF implementations.
37 #include <dl-hash.h>
  /external/icu/icu4c/source/common/
uhash.h 32 * functions. These functions hash keys, compare keys, delete keys,
57 * UHashElement pointer. A hash element contains a key, value, and
89 * This is a single hash element.
102 * @return A NON-NEGATIVE hash code for parm.
140 UHashFunction *keyHasher; /* Computes hash from key.
200 * @param size The initial capacity of this hash table.
223 uhash_init(UHashtable *hash,
231 * @param hash The UHashtable to close. If hash is NULL no operation is performed.
234 uhash_close(UHashtable *hash);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CaseInsensitiveString.java 21 private int hash = 0; field in class:CaseInsensitiveString
82 if (hash == 0) {
83 hash = folded.hashCode();
86 return hash;
  /external/libcxx/test/std/localization/locale.categories/category.collate/locale.collate/locale.collate.members/
hash.pass.cpp 14 // long hash(const charT* low, const charT* high) const;
29 assert(f.hash(x1.data(), x1.data() + x1.size())
30 != f.hash(x2.data(), x2.data() + x2.size()));
36 assert(f.hash(x1.data(), x1.data() + x1.size())
37 != f.hash(x2.data(), x2.data() + x2.size()));
  /external/libcxx/test/std/localization/locale.categories/category.collate/locale.collate.byname/
hash.pass.cpp 14 // long hash(const charT* low, const charT* high) const;
31 assert(f.hash(x1.data(), x1.data() + x1.size())
32 != f.hash(x2.data(), x2.data() + x2.size()));
38 assert(f.hash(x1.data(), x1.data() + x1.size())
39 != f.hash(x2.data(), x2.data() + x2.size()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate/locale.collate.members/
hash.pass.cpp 14 // long hash(const charT* low, const charT* high) const;
29 assert(f.hash(x1.data(), x1.data() + x1.size())
30 != f.hash(x2.data(), x2.data() + x2.size()));
36 assert(f.hash(x1.data(), x1.data() + x1.size())
37 != f.hash(x2.data(), x2.data() + x2.size()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate.byname/
hash.pass.cpp 14 // long hash(const charT* low, const charT* high) const;
31 assert(f.hash(x1.data(), x1.data() + x1.size())
32 != f.hash(x2.data(), x2.data() + x2.size()));
38 assert(f.hash(x1.data(), x1.data() + x1.size())
39 != f.hash(x2.data(), x2.data() + x2.size()));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.hash/
hash.pass.cpp 15 // struct hash<type_index>
27 assert(std::hash<std::type_index>()(t1) == t1.hash_code());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.synopsis/
hash_type_index.pass.cpp 12 // struct hash<type_index>
24 std::hash<std::type_index> >::value), "");
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/
sample_range_hashing.hpp 71 // Transforms the __hash value hash into a ranged-hash value.
73 operator()(size_type hash) const;
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/
sample_range_hashing.hpp 71 // Transforms the __hash value hash into a ranged-hash value.
73 operator()(size_type hash) const;

Completed in 1581 milliseconds

1 2 3 4 56 7 8 91011>>