HomeSort by relevance Sort by last modified time
    Searched refs:hashes (Results 26 - 50 of 79) sorted by null

12 3 4

  /external/chromium_org/chrome/browser/chromeos/policy/
auto_enrollment_client.h 109 // Returns true if |serial_number_hash_| is contained in |hashes|.
111 const google::protobuf::RepeatedPtrField<std::string>& hashes);
auto_enrollment_client.cc 334 // Server should have sent down a list of hashes to try.
351 const google::protobuf::RepeatedPtrField<std::string>& hashes) {
352 for (int i = 0; i < hashes.size(); ++i) {
353 if (hashes.Get(i) == serial_number_hash_)
  /frameworks/base/core/java/android/util/
ArraySet.java 188 private static void freeArrays(final int[] hashes, final Object[] array, final int size) {
189 if (hashes.length == (BASE_SIZE*2)) {
193 array[1] = hashes;
203 } else if (hashes.length == BASE_SIZE) {
207 array[1] = hashes;
529 final int[] hashes = mHashes; local
532 result += hashes[i];
ArrayMap.java 200 private static void freeArrays(final int[] hashes, final Object[] array, final int size) {
201 if (hashes.length == (BASE_SIZE*2)) {
205 array[1] = hashes;
215 } else if (hashes.length == BASE_SIZE) {
219 array[1] = hashes;
643 final int[] hashes = mHashes; local
648 result += hashes[i] ^ (value == null ? 0 : value.hashCode());
  /frameworks/support/v4/java/android/support/v4/util/
SimpleArrayMap.java 172 private static void freeArrays(final int[] hashes, final Object[] array, final int size) {
173 if (hashes.length == (BASE_SIZE*2)) {
177 array[1] = hashes;
187 } else if (hashes.length == BASE_SIZE) {
191 array[1] = hashes;
559 final int[] hashes = mHashes; local
564 result += hashes[i] ^ (value == null ? 0 : value.hashCode());
  /external/chromium_org/net/http/
transport_security_persister.cc 29 ListValue* SPKIHashesToListValue(const HashValueVector& hashes) {
31 for (size_t i = 0; i != hashes.size(); i++)
32 pins->Append(new StringValue(hashes[i].ToString()));
36 void SPKIHashesFromListValue(const ListValue& pins, HashValueVector* hashes) {
43 hashes->push_back(fingerprint);
48 // This function converts the binary hashes to a base64 string which we can
  /external/srtp/crypto/
Makefile 73 hashes = hash/null_auth.o hash/sha1.o \ macro
87 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(xfm)
  /external/valgrind/main/VEX/useful/
smchash.c 266 UInt* hashes = malloc( nHashes * sizeof(UInt) ); local
271 assert(hashes);
285 hashes[hashIx++] = hRunning;
310 free(hashes);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
SpellCheckRequester.cpp 72 Vector<uint32_t> hashes(markers.size());
75 hashes[i] = markers[i]->hash();
79 return adoptRef(new SpellCheckRequest(checkingRange, paragraphRange, text, textCheckingOptions, processType, hashes, offsets, requestNumber));
  /external/chromium_org/third_party/smhasher/src/
DifferentialTest.h 149 printf("Testing %0.f up-to-%d-bit differentials in %d-bit keys -> %d bit hashes.\n",diffcount,diffbits,keybits,hashbits);
254 std::vector<hashtype> hashes(keycount);
271 hashes[i] = h1 ^ h2;
274 result &= TestHashList<hashtype>(hashes,true,true,true);
Types.h 122 HashCallback ( pfHash hash, hashvec & hashes ) : m_hashes(hashes), m_pfHash(hash)
  /external/e2fsprogs/e2fsck/
rehash.c 77 ext2_dirhash_t *hashes; member in struct:out_dir
233 new_mem = realloc(outdir->hashes,
237 outdir->hashes = new_mem;
240 outdir->hashes = malloc(blocks * sizeof(ext2_dirhash_t));
250 free(outdir->hashes);
427 outdir->hashes[0] = 0;
459 outdir->hashes[outdir->num-1] = ent->hash | 1;
461 outdir->hashes[outdir->num-1] = ent->hash;
577 ext2fs_cpu_to_le32(outdir->hashes[i]);
597 ext2fs_cpu_to_le32(outdir->hashes[i])
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
HashTestUtils.java 50 byte[] hashes = new byte[hashBytes * 256];
57 System.arraycopy(hash, 0, hashes, i * hashBytes, hash.length);
61 byte[] result = hashFunction.hash(hashes, 0);
  /external/chromium/net/base/
transport_security_state.cc 269 // This function converts the binary hashes, which we store in
612 const std::vector<net::SHA1Fingerprint>& hashes) {
615 i = hashes.begin(); i != hashes.end(); i++) {
637 const std::vector<net::SHA1Fingerprint>& hashes) {
642 i = hashes.begin(); i != hashes.end(); ++i) {
651 << ". Validated chain: " << HashesToBase64String(hashes)
transport_security_state_unittest.cc 537 std::vector<SHA1Fingerprint> hashes; local
538 EXPECT_TRUE(domain_state.IsChainOfPublicKeysPermitted(hashes));
544 EXPECT_FALSE(domain_state.IsChainOfPublicKeysPermitted(hashes));
545 hashes.push_back(hash);
546 EXPECT_TRUE(domain_state.IsChainOfPublicKeysPermitted(hashes));
547 hashes[0].data[0] = '2';
548 EXPECT_FALSE(domain_state.IsChainOfPublicKeysPermitted(hashes));
  /external/chromium_org/net/third_party/nss/ssl/
ssl3ecc.c 228 SSL3Hashes *hashes, PRBool bypassPKCS11)
264 rv = ssl3_ComputeCommonKeyHash(hashAlg, hashBuf, bufLen, hashes,
269 hashes->u.s.md5, MD5_LENGTH));
271 hashes->u.s.sha, SHA1_LENGTH));
610 SSL3Hashes hashes; local
691 &hashes, ss->opt.bypassPKCS11);
698 rv = ssl3_VerifySignedHashes(&hashes, ss->sec.peerCert, &signature,
764 SSL3Hashes hashes; local
805 &hashes, ss->opt.bypassPKCS11);
823 rv = ssl3_SignHashes(&hashes, ss->serverCerts[certIndex].SERVERKEY,
    [all...]
ssl3con.c 6199 SSL3Hashes hashes; local
6745 SSL3Hashes hashes; local
7705 SSL3Hashes hashes; local
9138 SSL3Hashes hashes; local
10736 SSL3Hashes hashes; local
10895 SSL3Hashes hashes; local
11265 SSL3Hashes hashes; \/* computed hashes are put here. *\/ local
    [all...]
  /external/chromium_org/chrome/browser/ssl/
ssl_blocking_page.cc 309 std::string hashes; local
314 base::StringAppendF(&hashes, "%s ", it->ToString().c_str());
316 base::string16 fingerprint(ASCIIToUTF16(hashes));
  /build/tools/releasetools/
edify_generator.py 123 given *sha1 hashes, checking the version saved in cache if the
132 given *sha1 hashes."""
  /external/chromium_org/chrome/browser/managed_mode/
managed_mode_site_list.cc 69 // (via URL patterns or hostname hashes) and the URL in the corresponding Site
91 std::vector<std::string>* hashes = &site->hostname_hashes; local
103 hashes->push_back(hash);
  /external/srtp/
Makefile 79 hashes = crypto/hash/null_auth.o crypto/hash/sha1.o \ macro
96 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay)
  /external/chromium_org/chrome/browser/spellchecker/
feedback_sender.cc 24 // |FeedbackSender| periodically requests a list of hashes of all remaining
25 // misspellings in renderers. When a renderer responds with a list of hashes,
200 const std::set<uint32>& hashes = local
202 for (std::set<uint32>::const_iterator hash_it = hashes.begin();
203 hash_it != hashes.end();
272 // Generate a map of marker offsets to marker hashes. This map helps to
  /external/skia/tools/skpdiff/
skpdiff_server.py 224 # Get the expectations and compare them with actual hashes
308 for image_name, hashes in expected_diff.iteritems():
311 hashes['old'], hashes['new'],
389 """Sets the expected results file to use the hashes of the images in
395 # Reset all expectations to their old hashes because some of them may
  /external/chromium_org/net/quic/crypto/
quic_crypto_client_config.cc 285 vector<uint64> hashes; local
286 hashes.reserve(certs.size());
289 hashes.push_back(QuicUtils::FNV1a_64_Hash(i->data(), i->size()));
291 out->SetVector(kCCRT, hashes);
  /external/oprofile/daemon/
opd_sfile.c 33 static struct list_head hashes[HASH_SIZE]; variable in typeref:struct:list_head
261 list_for_each(pos, &hashes[hash]) {
270 list_add(&sf->hash, &hashes[hash]);
642 list_init(&hashes[i]);

Completed in 2190 milliseconds

12 3 4