HomeSort by relevance Sort by last modified time
    Searched full:hash (Results 676 - 700 of 8562) sorted by null

<<21222324252627282930>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.cnstr/
init.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
32 test_hash<std::hash<int> >,
51 assert(c.hash_function() == test_hash<std::hash<int> >());
63 test_hash<std::hash<int> >,
82 assert(c.hash_function() == test_hash<std::hash<int> >());
init_size.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
32 test_hash<std::hash<int> >,
53 assert(c.hash_function() == test_hash<std::hash<int> >());
65 test_hash<std::hash<int> >,
86 assert(c.hash_function() == test_hash<std::hash<int> >());
range.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
33 test_hash<std::hash<int> >,
54 assert(c.hash_function() == test_hash<std::hash<int> >());
66 test_hash<std::hash<int> >,
87 assert(c.hash_function() == test_hash<std::hash<int> >());
range_size.pass.cpp 12 // template <class Value, class Hash = hash<Value>, class Pred = equal_to<Value>,
33 test_hash<std::hash<int> >,
56 assert(c.hash_function() == test_hash<std::hash<int> >());
68 test_hash<std::hash<int> >,
91 assert(c.hash_function() == test_hash<std::hash<int> >());
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> >());
  /ndk/sources/host-tools/make-3.81/
SMakefile 128 vpath.o version.o ar.o arscan.o signame.o strcache.o hash.o \
135 $(srcdir)vpath.c $(srcdir)version.c $(srcdir)hash.c \
224 gettext.h filedef.h hash.h dep.h \
234 gettext.h dep.h filedef.h hash.h variable.h \
240 gettext.h filedef.h hash.h variable.h rule.h \
246 gettext.h hash.h \
251 gettext.h filedef.h hash.h \
259 hash.h job.h commands.h \
265 gettext.h filedef.h hash.h variable.h dep.h \
277 # .deps/hash.P
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
support.py 11 if not hash(obj_1) == hash(obj_2):
12 self.fail("%r and %r do not hash equal" % (obj_1, obj_2))
20 if hash(obj_1) == hash(obj_2):
21 self.fail("%s and %s hash equal, but shouldn't" %
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
support.py 11 if not hash(obj_1) == hash(obj_2):
12 self.fail("%r and %r do not hash equal" % (obj_1, obj_2))
20 if hash(obj_1) == hash(obj_2):
21 self.fail("%s and %s hash equal, but shouldn't" %
  /prebuilts/tools/common/proguard/proguard4.7/docs/
acknowledgements.html 11 window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
14 if (window.top.location.hash!=hash)
15 window.top.location.hash=hash;
license.html 11 window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
14 if (window.top.location.hash!=hash)
15 window.top.location.hash=hash;
screenshots.html 11 window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
14 if (window.top.location.hash!=hash)
15 window.top.location.hash=hash;
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/
limitations.html 11 window.top.location.replace("../index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
14 if (window.top.location.hash!=hash)
15 window.top.location.hash=hash;
wtk.html 11 window.top.location.replace("../index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
14 if (window.top.location.hash!=hash)
15 window.top.location.hash=hash;
  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/retrace/
introduction.html 11 window.top.location.replace("../../index.html#"+window.location.pathname+window.location.hash);
13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
14 if (window.top.location.hash!=hash)
15 window.top.location.hash=hash;
  /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/third_party/libjingle/source/talk/base/
socketaddresspair.cc 54 size_t SocketAddressPair::Hash() const {
55 return src_.Hash() ^ dest_.Hash();
  /external/chromium_org/chrome/browser/policy/cloud/
cloud_policy_store.cc 7 #include "base/hash.h"
41 // Determine if the policy changed by comparing the new policy's hash value
45 new_hash_value = base::Hash(policy_->policy_value());
  /external/chromium_org/chrome/common/metrics/
metrics_log_base_unittest.cc 54 uint64 hash = MetricsLogBase::Hash(cases[i].input); local
55 std::string hash_hex = base::StringPrintf("0x%016" PRIx64, hash);
  /external/chromium_org/net/quic/crypto/
null_decrypter_test.cc 15 // fnv hash
34 // fnv hash
52 // fnv hash (truncated)
  /external/chromium_org/net/quic/
quic_sent_entropy_manager_test.cc 40 QuicPacketEntropyHash hash = 0; local
42 hash ^= entropies[i].second;
43 EXPECT_EQ(hash, entropy_manager_.EntropyHash(i + 1));
  /external/chromium_org/third_party/libjingle/source/talk/base/
socketaddresspair.cc 54 size_t SocketAddressPair::Hash() const {
55 return src_.Hash() ^ dest_.Hash();
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_cache.h 56 * @param hash hash function
62 util_cache_create(uint32_t (*hash)(const void *key),
  /external/chromium_org/v8/src/
preparse-data.h 170 int hash = vector_hash(literal); local
171 LogSymbol(start, hash, true, Vector<const byte>::cast(literal));
176 int hash = vector_hash(literal); local
177 LogSymbol(start, hash, false, Vector<const byte>::cast(literal));
192 int hash,
198 int hash = 0; local
201 hash += c;
202 hash += (hash << 10);
203 hash ^= (hash >> 6)
    [all...]
  /external/dropbear/libtomcrypt/src/hashes/
md2.c 15 MD2 (RFC 1319) hash function implementation by Tom St Denis
97 Initialize the hash state
98 @param md The hash state you wish to initialize
114 Process a block of memory though the hash
115 @param md The hash state
116 @param in The data to hash
146 Terminate the hash to get the digest
147 @param md The hash state
148 @param out [out] The destination of the hash (16 bytes)
169 /* hash and update *
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractStreamingHasherTest.java 3 package com.google.common.hash;
7 import com.google.common.hash.AbstractStreamingHashFunction.AbstractStreamingHasher;
8 import com.google.common.hash.HashTestUtils.RandomHasherAction;
41 sink.hash();
49 sink.hash();
57 sink.hash();
65 sink.hash();
73 sink.hash();
81 sink.hash();
89 sink.hash();
    [all...]

Completed in 1032 milliseconds

<<21222324252627282930>>