/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
functional_hash.h | 56 /// Primary class template hash. 58 struct hash : public __hash_base<size_t, _Tp> struct in inherits:__hash_base 61 "std::hash is not specialized for this type"); 67 struct hash<_Tp*> : public __hash_base<size_t, _Tp*> struct in inherits:__hash_base 77 struct hash<_Tp> : public __hash_base<size_t, _Tp> \ 134 hash(const void* __ptr, size_t __clength, function in struct:_Hash_impl 140 hash(const _Tp& __val) function in struct:_Hash_impl 141 { return hash(&__val, sizeof(__val)); } 146 { return hash(&__val, sizeof(__val), __hash); } 152 hash(const void* __ptr, size_t __clength function in struct:_Fnv_hash_impl 158 hash(const _Tp& __val) function in struct:_Fnv_hash_impl 169 struct hash<float> : public __hash_base<size_t, float> struct in inherits:__hash_base 181 struct hash<double> : public __hash_base<size_t, double> struct in inherits:__hash_base 193 struct hash<long double> struct in inherits:__hash_base [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
functional_hash.h | 56 /// Primary class template hash. 58 struct hash : public __hash_base<size_t, _Tp> struct in inherits:__hash_base 61 "std::hash is not specialized for this type"); 67 struct hash<_Tp*> : public __hash_base<size_t, _Tp*> struct in inherits:__hash_base 77 struct hash<_Tp> : public __hash_base<size_t, _Tp> \ 134 hash(const void* __ptr, size_t __clength, function in struct:_Hash_impl 140 hash(const _Tp& __val) function in struct:_Hash_impl 141 { return hash(&__val, sizeof(__val)); } 146 { return hash(&__val, sizeof(__val), __hash); } 152 hash(const void* __ptr, size_t __clength function in struct:_Fnv_hash_impl 158 hash(const _Tp& __val) function in struct:_Fnv_hash_impl 169 struct hash<float> : public __hash_base<size_t, float> struct in inherits:__hash_base 181 struct hash<double> : public __hash_base<size_t, double> struct in inherits:__hash_base 193 struct hash<long double> struct in inherits:__hash_base [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
functional_hash.h | 56 /// Primary class template hash. 58 struct hash : public __hash_base<size_t, _Tp> struct in inherits:__hash_base 61 "std::hash is not specialized for this type"); 67 struct hash<_Tp*> : public __hash_base<size_t, _Tp*> struct in inherits:__hash_base 77 struct hash<_Tp> : public __hash_base<size_t, _Tp> \ 134 hash(const void* __ptr, size_t __clength, function in struct:_Hash_impl 140 hash(const _Tp& __val) function in struct:_Hash_impl 141 { return hash(&__val, sizeof(__val)); } 146 { return hash(&__val, sizeof(__val), __hash); } 152 hash(const void* __ptr, size_t __clength function in struct:_Fnv_hash_impl 158 hash(const _Tp& __val) function in struct:_Fnv_hash_impl 169 struct hash<float> : public __hash_base<size_t, float> struct in inherits:__hash_base 181 struct hash<double> : public __hash_base<size_t, double> struct in inherits:__hash_base 193 struct hash<long double> struct in inherits:__hash_base [all...] |
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
functional_hash.h | 56 /// Primary class template hash. 58 struct hash : public __hash_base<size_t, _Tp> struct in inherits:__hash_base 61 "std::hash is not specialized for this type"); 67 struct hash<_Tp*> : public __hash_base<size_t, _Tp*> struct in inherits:__hash_base 77 struct hash<_Tp> : public __hash_base<size_t, _Tp> \ 134 hash(const void* __ptr, size_t __clength, function in struct:_Hash_impl 140 hash(const _Tp& __val) function in struct:_Hash_impl 141 { return hash(&__val, sizeof(__val)); } 146 { return hash(&__val, sizeof(__val), __hash); } 152 hash(const void* __ptr, size_t __clength function in struct:_Fnv_hash_impl 158 hash(const _Tp& __val) function in struct:_Fnv_hash_impl 169 struct hash<float> : public __hash_base<size_t, float> struct in inherits:__hash_base 181 struct hash<double> : public __hash_base<size_t, double> struct in inherits:__hash_base 193 struct hash<long double> struct in inherits:__hash_base [all...] |
/frameworks/compile/mclinker/lib/Object/ |
SectionMap.cpp | 23 : hash(-1) { 28 hash = SectionMap::hash(pFrom); 41 unsigned int hash = SectionMap::hash(pFrom); local 42 return find(pFrom, hash); 47 unsigned int hash = SectionMap::hash(pFrom); local 48 return find(pFrom, hash); 101 if (!hash::StringHash<hash::ES>::may_include(pNamePair.hash, pHashValue) 113 unsigned int SectionMap::hash(const std::string& pString) function in class:SectionMap [all...] |
/external/dropbear/libtomcrypt/src/mac/hmac/ |
hmac_done.c | 20 #define HMAC_BLOCKSIZE hash_descriptor[hash].blocksize 33 int hash, err; local 38 /* test hash */ 39 hash = hmac->hash; 40 if((err = hash_is_valid(hash)) != CRYPT_OK) { 44 /* get the hash message digest size */ 45 hashsize = hash_descriptor[hash].hashsize; 60 /* Get the hash of the first HMAC vector plus the data */ 61 if ((err = hash_descriptor[hash].done(&hmac->md, isha)) != CRYPT_OK) [all...] |
hmac_process.c | 32 if ((err = hash_is_valid(hmac->hash)) != CRYPT_OK) { 35 return hash_descriptor[hmac->hash].process(&hmac->md, in, inlen);
|
/external/guava/guava-tests/test/com/google/common/hash/ |
Murmur3Hash128Test.java | 17 package com.google.common.hash; 19 import static com.google.common.hash.HashTestUtils.ascii; 20 import static com.google.common.hash.HashTestUtils.toBytes; 21 import static com.google.common.hash.Hashing.murmur3_128; 24 import com.google.common.hash.Funnels; 25 import com.google.common.hash.HashTestUtils.HashFn; 55 byte[] hash = murmur3_128(seed).newHasher().putBytes(input).hash().asBytes(); 56 assertTrue(Arrays.equals(expectedHash, hash)); 61 @Override public byte[] hash(byte[] input, int seed) [all...] |
/external/chromium_org/third_party/smhasher/src/ |
main.cpp | 37 pfHash hash; member in struct:HashInfo 55 { FNV, 32, 0xE3CBBE91, "FNV", "Fowler-Noll-Vo hash, 32-bit" }, 106 pass &= VerificationTest(info->hash,info->hashbits,info->verification,false); 118 pass &= VerificationTest(info->hash,info->hashbits,info->verification,true); 128 void test ( hashfunc<hashtype> hash, HashInfo * info ) 142 VerificationTest(hash,hashbits,info->verification,true); 143 SanityTest(hash,hashbits); 144 AppendedZeroesTest(hash,hashbits); 155 BulkSpeedTest(info->hash,info->verification); 162 TinySpeedTest(hashfunc<hashtype>(info->hash),sizeof(hashtype),i,info->verification,true,cycles) [all...] |
/art/runtime/ |
gc_map.h | 68 size_t index = Hash(native_pc_offset) % num_entries; 78 static uint32_t Hash(uint32_t native_offset) { 79 uint32_t hash = native_offset; local 80 hash ^= (hash >> 20) ^ (hash >> 12); 81 hash ^= (hash >> 7) ^ (hash >> 4); 82 return hash; [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
HmacKeyParams.idl | 34 readonly attribute Algorithm hash;
|
HmacParams.cpp | 38 Algorithm* HmacParams::hash() function in class:WebCore::HmacParams 41 m_hash = Algorithm::create(m_algorithm.hmacParams()->hash());
|
RsaSsaParams.cpp | 38 Algorithm* RsaSsaParams::hash() function in class:WebCore::RsaSsaParams 41 m_hash = Algorithm::create(m_algorithm.rsaSsaParams()->hash());
|
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
KURLHash.h | 36 static unsigned hash(const KURL& key) function in struct:WebCore::KURLHash 38 return key.string().impl()->hash();
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/ |
translate_cache.c | 37 struct cso_hash *hash; member in struct:translate_cache 47 cache->hash = cso_hash_create(); 54 struct cso_hash *hash = cache->hash; local 55 struct cso_hash_iter iter = cso_hash_first_node(hash); 68 cso_hash_delete(cache->hash); 95 cso_hash_find_data_from_template(cache->hash, 102 cso_hash_insert(cache->hash, hash_key, translate);
|
/external/dropbear/libtomcrypt/src/hashes/helper/ |
hash_memory_multi.c | 15 Hash (multiple buffers) memory helper, Tom St Denis 19 Hash multiple (non-adjacent) blocks of memory at once. 20 @param hash The index of the hash you wish to use 23 @param in The data you wish to hash 24 @param inlen The length of the data to hash (octets) 25 @param ... tuples of (data,len) pairs to hash, terminated with a (NULL,x) (x=don't care) 28 int hash_memory_multi(int hash, unsigned char *out, unsigned long *outlen, 41 if ((err = hash_is_valid(hash)) != CRYPT_OK) { 45 if (*outlen < hash_descriptor[hash].hashsize) [all...] |
/external/mesa3d/src/gallium/auxiliary/translate/ |
translate_cache.c | 37 struct cso_hash *hash; member in struct:translate_cache 47 cache->hash = cso_hash_create(); 54 struct cso_hash *hash = cache->hash; local 55 struct cso_hash_iter iter = cso_hash_first_node(hash); 68 cso_hash_delete(cache->hash); 95 cso_hash_find_data_from_template(cache->hash, 102 cso_hash_insert(cache->hash, hash_key, translate);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.hash/ |
hash_shared_ptr.pass.cpp | 13 // struct hash<shared_ptr<T>> 27 std::hash<std::shared_ptr<int> > f; 29 assert(h == std::hash<int*>()(ptr));
|
hash_unique_ptr.pass.cpp | 13 // struct hash<unique_ptr<T, D>> 27 std::hash<std::unique_ptr<int> > f; 29 assert(h == std::hash<int*>()(ptr));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/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/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/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/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/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); }
|