/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/gp_hash_table_map_/ |
resize_no_store_hash_fn_imps.hpp | 39 * hash value is not stored. 49 size_type hash = ranged_probe_fn_base::operator()(r_key); local 53 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/gp_hash_table_map_/ |
erase_no_store_hash_fn_imps.hpp | 39 * when the hash value is not stored. 48 size_type hash = ranged_probe_fn_base::operator()(r_key); local 54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
|
resize_no_store_hash_fn_imps.hpp | 39 * hash value is not stored. 49 size_type hash = ranged_probe_fn_base::operator()(r_key); local 53 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/gp_hash_table_map_/ |
erase_no_store_hash_fn_imps.hpp | 39 * when the hash value is not stored. 48 size_type hash = ranged_probe_fn_base::operator()(r_key); local 54 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
|
resize_no_store_hash_fn_imps.hpp | 39 * hash value is not stored. 49 size_type hash = ranged_probe_fn_base::operator()(r_key); local 53 const size_type pos = ranged_probe_fn_base::operator()(r_key, hash, i);
|
/external/deqp/framework/delibs/depool/ |
dePoolHashArray.h | 23 * \brief Memory pool hash-array class. 37 * \brief Declare a template pool hash-array (array with hash) class interface. 38 * \param TYPENAME Type name of the declared hash-array. 46 * The functions for operating the hash are: 54 * Value* HashArray_find (Hash* hashArray, Key key); 55 * deBool HashArray_insert (Hash* hashArray, Key key, Value value); 56 * deBool HashArray_copyToArray (Hash* hashArray, KeyArray* keys, ValueArray* values); 62 DE_DECLARE_POOL_HASH(TYPENAME##Hash, KEYTYPE, int); \ 66 TYPENAME##Hash* hash; [all...] |
/external/mesa3d/src/mesa/program/ |
hash_table.c | 26 * \brief Implementation of a generic, opaque hash table data type. 41 hash_func_t hash; member in struct:hash_table 57 hash_table_ctor(unsigned num_buckets, hash_func_t hash, 71 ht->hash = hash; 114 const unsigned hash_value = (*ht->hash)(key); 140 const unsigned hash_value = (*ht->hash)(key); 155 const unsigned hash_value = (*ht->hash)(key); 212 unsigned hash = 5381; local 216 hash = (hash * 33) + *str [all...] |
/external/v8/src/ |
hashmap.h | 26 // initial_capacity is the size of the initial hash map; 34 // HashMap entries are (key, value, hash) triplets. 40 uint32_t hash; // The full hash value for key member in struct:v8::internal::TemplateHashMapImpl::Entry 47 // corresponding key, key hash, and NULL value. 49 Entry* Lookup(void* key, uint32_t hash, bool insert, 55 void* Remove(void* key, uint32_t hash); 57 // Empties the hash map (occupancy() == 0). 91 Entry* Probe(void* key, uint32_t hash); 115 void* key, uint32_t hash, bool insert, AllocationPolicy allocator) [all...] |
/external/valgrind/callgrind/ |
context.c | 106 new_idx = (UInt) (curr->hash % new_size); 123 CLG_DEBUG(0, "Resize Context Hash: %d => %d (entries %d, conflicts %d/%d)\n", 135 UWord hash = 0; local 138 hash = (hash<<7) + (hash>>25) + (UWord)(*fn); 143 return hash; 147 static Bool is_cxt(UWord hash, fn_node** fn, Context* cxt) 152 if (hash != cxt->hash) return False 172 UWord hash; local 232 UWord hash; local [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
LockSettingsStorageTests.java | 222 assertArrayEquals("thepassword".getBytes(), mStorage.readPasswordHash(0).hash); 224 assertArrayEquals("thepassword".getBytes(), mStorage.readPasswordHash(0).hash); 231 assertArrayEquals("profilepassword".getBytes(), mStorage.readPasswordHash(1).hash); 232 assertArrayEquals("profilepassword".getBytes(), mStorage.readPasswordHash(2).hash); 234 assertArrayEquals("profilepassword".getBytes(), mStorage.readPasswordHash(1).hash); 235 assertArrayEquals("profilepassword".getBytes(), mStorage.readPasswordHash(2).hash); 242 assertArrayEquals("parentpasswordd".getBytes(), mStorage.readPasswordHash(1).hash); 243 assertArrayEquals("parentpasswordd".getBytes(), mStorage.readPasswordHash(2).hash); 245 assertArrayEquals("parentpasswordd".getBytes(), mStorage.readPasswordHash(1).hash); 246 assertArrayEquals("parentpasswordd".getBytes(), mStorage.readPasswordHash(2).hash); [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
AbstractMessage.java | 116 int hash = memoizedHashCode; local 117 if (hash == 0) { 118 hash = 41; 119 hash = (19 * hash) + getDescriptorForType().hashCode(); 120 hash = hashFields(hash, getAllFields()); 121 hash = (29 * hash) + getUnknownFields().hashCode(); 122 memoizedHashCode = hash; [all...] |
/external/elfutils/src/libelf/ |
elf_gnu_hash.c | 1 /* GNU-style Hash function used in ELF implementations. 37 #include <dl-hash.h>
|
/external/guava/guava/src/com/google/common/hash/ |
Funnel.java | 15 package com.google.common.hash;
|
/external/guava/guava-tests/test/com/google/common/hash/ |
AbstractStreamingHasherTest.java | 17 package com.google.common.hash; 23 import com.google.common.hash.AbstractStreamingHashFunction.AbstractStreamingHasher; 24 import com.google.common.hash.HashTestUtils.RandomHasherAction; 52 sink.hash(); 60 sink.hash(); 68 sink.hash(); 76 sink.hash(); 84 sink.hash(); 96 new Sink(4).putString(s).hash(), 97 new Sink(4).putBytes(s.getBytes(UTF_16LE.name())).hash()); [all...] |
/external/libcxx/test/std/containers/ |
NotConstructible.h | 31 struct hash<NotConstructible> struct in namespace:std
|
/external/libcxx/test/std/containers/unord/unord.map/ |
max_size.pass.cpp | 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>, 31 std::unordered_map<int, int, std::hash<int>, std::equal_to<int>,
|
/external/libcxx/test/std/containers/unord/unord.multimap/ |
max_size.pass.cpp | 12 // template <class Key, class T, class Hash = hash<Key>, class Pred = equal_to<Key>, 31 std::unordered_multimap<int, int, std::hash<int>, std::equal_to<int>,
|
/external/libcxx/test/std/containers/unord/unord.multiset/ |
max_bucket_count.pass.cpp | 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>, 32 typedef std::unordered_multiset<int, std::hash<int>,
|
max_size.pass.cpp | 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>, 31 std::unordered_multiset<int, std::hash<int>,
|
/external/libcxx/test/std/containers/unord/unord.multiset/unord.multiset.cnstr/ |
size.fail.cpp | 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>, 31 test_hash<std::hash<NotConstructible> >, 37 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >()); 49 test_hash<std::hash<NotConstructible> >, 55 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
|
size.pass.cpp | 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>, 31 test_hash<std::hash<NotConstructible> >, 37 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >()); 49 test_hash<std::hash<NotConstructible> >, 55 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
|
/external/libcxx/test/std/containers/unord/unord.set/ |
max_bucket_count.pass.cpp | 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>, 32 typedef std::unordered_set<int, std::hash<int>,
|
max_size.pass.cpp | 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>, 31 std::unordered_set<int, std::hash<int>,
|
/external/libcxx/test/std/containers/unord/unord.set/unord.set.cnstr/ |
assign_move.pass.cpp | 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>, 33 test_hash<std::hash<int> >, 49 test_hash<std::hash<int> >(8), 55 test_hash<std::hash<int> >(2), 66 assert(c.hash_function() == test_hash<std::hash<int> >(8)); 78 test_hash<std::hash<int> >, 94 test_hash<std::hash<int> >(8), 100 test_hash<std::hash<int> >(2), 111 assert(c.hash_function() == test_hash<std::hash<int> >(8)) [all...] |
size.pass.cpp | 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>, 31 test_hash<std::hash<NotConstructible> >, 37 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >()); 49 test_hash<std::hash<NotConstructible> >, 55 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >());
|