HomeSort by relevance Sort by last modified time
    Searched refs:hash (Results 201 - 225 of 3090) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/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/9/sources/cxx-stl/gnu-libstdc++/4.6/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;
  /external/chromium_org/chrome/common/
spellcheck_result.h 33 : decoration(d), location(loc), length(len), replacement(rep), hash(h) {
40 uint32 hash; member in struct:SpellCheckResult
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
HmacKeyParams.cpp 38 Algorithm* HmacKeyParams::hash() function in class:WebCore::HmacKeyParams
41 m_hash = Algorithm::create(m_algorithm.hmacKeyParams()->hash());
  /external/chromium_org/third_party/WebKit/Source/web/
WebTextCheckingResult.cpp 47 result.hash = hash;
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
ShaderKey.java 87 int hash = 7; local
88 hash = 41 * hash + name.hashCode();
89 hash = 41 * hash + fragName.hashCode();
90 hash = 41 * hash + (defines != null ? defines.getCompiled().hashCode() : 0);
91 return hash;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/unord.hash/
pointer.pass.cpp 13 // struct hash
31 std::hash<T> >::value), "");
32 std::hash<T> h;
  /external/apache-http/src/org/apache/http/auth/
NTUserPrincipal.java 88 int hash = LangUtils.HASH_SEED; local
89 hash = LangUtils.hashCode(hash, this.username);
90 hash = LangUtils.hashCode(hash, this.domain);
91 return hash;
  /external/apache-http/src/org/apache/http/message/
BasicNameValuePair.java 179 int hash = LangUtils.HASH_SEED; local
180 hash = LangUtils.hashCode(hash, this.name);
181 hash = LangUtils.hashCode(hash, this.value);
182 return hash;
  /external/chromium_org/third_party/cld/base/
stl_decl_msvc.h 75 struct hash;
78 class HashFcn = hash<Key> >
82 class HashFcn = hash<Key> >
86 class HashFcn = hash<Key> >
90 class HashFcn = hash<Key> >
96 using msvchash::hash;
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_cache.c 39 GLuint hash; member in struct:cache_item
55 * Compute hash index from state key.
61 GLuint hash = 0, i; local
65 /* Make a slightly better attempt at a hash function:
69 hash += ikey[i];
70 hash += (hash << 10);
71 hash ^= (hash >> 6);
74 return hash;
182 const GLuint hash = hash_key(key, keysize); local
203 const GLuint hash = hash_key(key, keysize); local
231 const GLuint hash = hash_key(key, keysize); local
    [all...]
  /external/mesa3d/src/mesa/program/
prog_cache.c 39 GLuint hash; member in struct:cache_item
55 * Compute hash index from state key.
61 GLuint hash = 0, i; local
65 /* Make a slightly better attempt at a hash function:
69 hash += ikey[i];
70 hash += (hash << 10);
71 hash ^= (hash >> 6);
74 return hash;
182 const GLuint hash = hash_key(key, keysize); local
203 const GLuint hash = hash_key(key, keysize); local
231 const GLuint hash = hash_key(key, keysize); local
    [all...]
  /frameworks/base/core/java/android/view/
DisplayAdjustments.java 80 int hash = 17; local
81 hash = hash * 31 + mCompatInfo.hashCode();
83 hash = hash * 31 + (mActivityToken == null ? 0 : mActivityToken.hashCode());
85 return hash;
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 31 hash::StringHash<hash::ELF>,
35 hash::StringHash<hash::ELF>,
39 hash::StringHash<hash::ELF>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/
size_hash.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 test_hash<std::hash<NotConstructible> >,
36 test_hash<std::hash<NotConstructible> >(8)
39 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >(8));
51 test_hash<std::hash<NotConstructible> >,
56 test_hash<std::hash<NotConstructible> >(8)
59 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >(8));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.cnstr/
size_hash.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
31 test_hash<std::hash<NotConstructible> >,
36 test_hash<std::hash<NotConstructible> >(8)
39 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >(8));
51 test_hash<std::hash<NotConstructible> >,
56 test_hash<std::hash<NotConstructible> >(8)
59 assert(c.hash_function() == test_hash<std::hash<NotConstructible> >(8));
  /external/chromium_org/third_party/smhasher/src/
KeysetTest.h 2 // Keyset tests generate various sorts of difficult-to-hash keysets and compare
3 // the distribution and collision frequency of the hash results against an
20 bool VerificationTest ( pfHash hash, const int hashbits, uint32_t expected, bool verbose );
21 bool SanityTest ( pfHash hash, const int hashbits );
22 void AppendedZeroesTest ( pfHash hash, const int hashbits );
30 pfHash hash, std::vector<hashtype> & hashes )
41 hash(key,(len+1) * sizeof(uint32_t),0,&h);
47 CombinationKeygenRecurse(key,len+1,maxlen,blocks,blockcount,hash,hashes);
53 bool CombinationKeyTest ( hashfunc<hashtype> hash, int maxlen, uint32_t * blocks, int blockcount, bool testColl, bool testDist, bool drawDiagram )
63 CombinationKeygenRecurse<hashtype>(key,0,maxlen,blocks,blockcount,hash,hashes)
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
HashCodesTest.java 3 package com.google.common.hash;
46 // expectedHashCodes must contain at least one hash code with 4 bytes
56 // expectedHashCodes must contain at least one hash code with 8 bytes
73 private void assertExpectedHashCode(ExpectedHashCode expected, HashCode hash) {
74 assertTrue(Arrays.equals(expected.bytes, hash.asBytes()));
75 byte[] bb = new byte[hash.bits() / 8];
76 hash.writeBytesTo(bb, 0, bb.length);
78 assertEquals(expected.asInt, hash.asInt());
81 hash.asLong();
85 assertEquals(expected.asLong.longValue(), hash.asLong())
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 73 // Hash code consist of 6 bytes: AABB00
75 // AA - 2 bytes for prefix hash
77 // BB - 2 bytes for tail hash
82 // the similar hash codes.
84 // The masks to work with hash codes:
85 // the hash code without the reserved bytes
87 // the hash code of the prefix
94 // the number of bytes which will be used for array hash generation.
98 // This information includes: hash of the array, encoded form of the object,
100 // The hash-encoding-object correspondence is made by means of inde
170 long hash = 0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
cso_cache.c 51 unsigned hash = 0, i; local
58 hash ^= ikey[i];
60 return hash;
85 struct cso_hash *hash; local
86 hash = sc->hashes[type];
87 return hash;
156 struct cso_hash *hash,
161 sc->sanitize_cb(hash, type, max_size, sc->sanitize_data);
165 static INLINE void sanitize_cb(struct cso_hash *hash, enum cso_cache_type type,
170 int hash_size = cso_hash_size(hash);
190 struct cso_hash *hash = _cso_hash_for_type(sc, type); local
200 struct cso_hash *hash = _cso_hash_for_type(sc, type); local
242 struct cso_hash *hash = _cso_hash_for_type(sc, type); local
266 struct cso_hash *hash = _cso_hash_for_type(sc, type); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_cache.c 51 uint32_t hash; member in struct:util_cache_entry
67 /** Hash function */
68 uint32_t (*hash)(const void *key); member in struct:util_cache
90 util_cache_create(uint32_t (*hash)(const void *key),
101 cache->hash = hash;
123 uint32_t hash,
127 uint32_t index = hash % cache->size;
142 if (current->hash == hash &
186 uint32_t hash = cache->hash(key); local
221 uint32_t hash = cache->hash(key); local
292 uint32_t hash; local
    [all...]
u_surfaces.c 42 if(!us->u.hash)
43 us->u.hash = cso_hash_create();
45 ps = cso_hash_iter_data(cso_hash_find(us->u.hash, (layer << 8) | level));
71 cso_hash_insert(us->u.hash, (layer << 8) | level, ps);
85 cso_hash_erase(us->u.hash, cso_hash_find(us->u.hash, (ps->u.tex.first_layer << 8) | ps->u.tex.level));
96 if(us->u.hash)
99 iter = cso_hash_first_node(us->u.hash);
105 cso_hash_delete(us->u.hash);
106 us->u.hash = NULL
    [all...]
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.c 51 unsigned hash = 0, i; local
58 hash ^= ikey[i];
60 return hash;
85 struct cso_hash *hash; local
86 hash = sc->hashes[type];
87 return hash;
156 struct cso_hash *hash,
161 sc->sanitize_cb(hash, type, max_size, sc->sanitize_data);
165 static INLINE void sanitize_cb(struct cso_hash *hash, enum cso_cache_type type,
170 int hash_size = cso_hash_size(hash);
190 struct cso_hash *hash = _cso_hash_for_type(sc, type); local
200 struct cso_hash *hash = _cso_hash_for_type(sc, type); local
242 struct cso_hash *hash = _cso_hash_for_type(sc, type); local
266 struct cso_hash *hash = _cso_hash_for_type(sc, type); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_cache.c 51 uint32_t hash; member in struct:util_cache_entry
67 /** Hash function */
68 uint32_t (*hash)(const void *key); member in struct:util_cache
90 util_cache_create(uint32_t (*hash)(const void *key),
101 cache->hash = hash;
123 uint32_t hash,
127 uint32_t index = hash % cache->size;
142 if (current->hash == hash &
186 uint32_t hash = cache->hash(key); local
221 uint32_t hash = cache->hash(key); local
292 uint32_t hash; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ext_attr.c 32 * Compute the hash of an extended attribute.
36 __u32 hash = 0; local
41 hash = (hash << NAME_HASH_SHIFT) ^
42 (hash >> (8*sizeof(hash) - NAME_HASH_SHIFT)) ^
46 /* The hash needs to be calculated on the data in little-endian. */
51 hash = (hash << VALUE_HASH_SHIFT) ^
52 (hash >> (8*sizeof(hash) - VALUE_HASH_SHIFT))
    [all...]

Completed in 383 milliseconds

1 2 3 4 5 6 7 891011>>