/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mask_based_base::range_hash(hash); }
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mod_based_base::range_hash(hash); }
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mask_based_base::range_hash(hash); }
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mod_based_base::range_hash(hash); }
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mask_based_base::range_hash(hash); }
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mod_based_base::range_hash(hash); }
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mask_based_base::range_hash(hash); }
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mod_based_base::range_hash(hash); }
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mask_based_base::range_hash(hash); }
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mod_based_base::range_hash(hash); }
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mask_based_base::range_hash(hash); }
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mod_based_base::range_hash(hash); }
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mask_based_base::range_hash(hash); }
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mod_based_base::range_hash(hash); }
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mask_based_base::range_hash(hash); }
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mod_based_base::range_hash(hash); }
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/hash_fn/ |
direct_mask_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mask_based_base::range_hash(hash); }
|
direct_mod_range_hashing_imp.hpp | 56 operator()(size_type hash) const 57 { return mod_based_base::range_hash(hash); }
|
/dalvik/vm/test/ |
TestHash.cpp | 18 * Test the hash table functions. 76 * Some quick hash table tests. 83 u4 hash; local 97 hash = dvmComputeUtf8Hash(tmpStr); 98 dvmHashTableLookup(pTab, hash, strdup(tmpStr), 107 hash = dvmComputeUtf8Hash(tmpStr); 108 str = (const char*) dvmHashTableLookup(pTab, hash, tmpStr, 118 hash = dvmComputeUtf8Hash(tmpStr); 119 str = (const char*) dvmHashTableLookup(pTab, hash, tmpStr, 141 hash = 0 [all...] |
/external/javassist/src/main/javassist/scopedpool/ |
SoftValueHashMap.java | 52 * Returns a set of the mappings contained in this hash table. 56 return hash.entrySet(); 59 /* Hash table mapping WeakKeys to values */ 60 private Map hash; field in class:SoftValueHashMap 72 if (ref == (SoftValueRef)hash.get(ref.key)) { 75 hash.remove(ref.key); 97 hash = new HashMap(initialCapacity, loadFactor); 111 hash = new HashMap(initialCapacity); 119 hash = new HashMap(); 146 return hash.size() [all...] |
/external/dropbear/libtomcrypt/src/mac/hmac/ |
hmac_memory.c | 22 @param hash The index of the hash to use 31 int hmac_memory(int hash, 44 /* make sure hash descriptor is valid */ 45 if ((err = hash_is_valid(hash)) != CRYPT_OK) { 50 if (hash_descriptor[hash].hmac_block != NULL) { 51 return hash_descriptor[hash].hmac_block(key, keylen, in, inlen, out, outlen); 61 if ((err = hmac_init(hmac, hash, key, keylen)) != CRYPT_OK) {
|
/frameworks/base/libs/hwui/utils/ |
TinyHashMap.h | 26 * A very simple hash map that doesn't allow duplicate keys, overwriting the older entry. 36 * Puts an entry in the hash, removing any existing entry with the same key 39 hash_t hash = hash_t(key); local 41 ssize_t index = mTable.find(-1, hash, key); 47 mTable.add(hash, initEntry); 54 hash_t hash = hash_t(key); local 55 ssize_t index = mTable.find(-1, hash, key);
|
/libcore/crypto/src/main/java/org/conscrypt/ |
CertificateVerify.java | 37 * @param hash 39 public CertificateVerify(byte[] hash) { 40 if (hash == null || hash.length == 0) { 42 "INTERNAL ERROR: incorrect certificate verify hash"); 44 this.signedHash = hash; 45 length = hash.length + 2;
|
/external/apache-http/src/org/apache/http/conn/scheme/ |
Scheme.java | 209 * Obtains a hash code for this scheme. 211 * @return the hash code 215 int hash = LangUtils.HASH_SEED; local 216 hash = LangUtils.hashCode(hash, this.defaultPort); 217 hash = LangUtils.hashCode(hash, this.name); 218 hash = LangUtils.hashCode(hash, this.layered); 219 hash = LangUtils.hashCode(hash, this.socketFactory) [all...] |
/external/chromium_org/chrome/browser/chromeos/policy/ |
cloud_external_data_store.cc | 19 // Encodes (policy, hash) into a single string. 20 std::string GetSubkey(const std::string& policy, const std::string& hash) { 22 DCHECK(!hash.empty()); 24 base::IntToString(hash.size()) + ":" + 25 policy + hash; 49 subkeys_to_keep.insert(GetSubkey(it->first, it->second.hash)); 55 const std::string& hash, 58 return cache_->Store(cache_key_, GetSubkey(policy, hash), data); 62 const std::string& hash, 66 const std::string subkey = GetSubkey(policy, hash); [all...] |