Searched refs:hashes (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Ddeduplicate_tests.py80 hashes = collections.defaultdict(set)
91 hashes[(test, hash)].add(path)
92 return hashes
96 """Get the hashes of all the test expectations in the tree.
97 We cheat and use git's hashes.
105 hashes = collections.defaultdict(set)
190 def find_dups(hashes, port_fallbacks, relative_to):
193 hashes: a list of hashes as returned by cluster_file_hashes.
200 for (test, hash), cluster in hashes
[all...]
H A Ddeduplicate_tests_unittest.py72 hashes = deduplicate_tests.parse_git_output(git_output, '*')
78 self.assertEquals(expected, hashes)
80 hashes = deduplicate_tests.parse_git_output(git_output, '*.png')
82 self.assertEquals(expected, hashes)
/external/oprofile/daemon/
H A Dopd_cookie.c100 static struct list_head hashes[HASH_SIZE]; variable in typeref:struct:list_head
142 list_for_each(pos, &hashes[hash]) {
150 list_add(&entry->list, &hashes[hash]);
165 list_for_each(pos, &hashes[hash]) {
172 list_add(&entry->list, &hashes[hash]);
190 list_for_each(pos, &hashes[hash]) {
208 list_init(&hashes[i]);
H A Dopd_anon.c43 static struct list_head hashes[HASH_SIZE]; variable in typeref:struct:list_head
88 list_for_each_safe(pos, pos2, &hashes[hash]) {
118 list_add_tail(&m->list, &hashes[hash]);
190 list_for_each(pos, &hashes[hash]) {
211 list_add(&entry->list, &hashes[hash]);
225 list_init(&hashes[i]);
H A Dopd_sfile.c33 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]);
/external/dropbear/libtomcrypt/
H A DAndroid.mk25 src/hashes/chc/chc.c src/hashes/helper/hash_file.c src/hashes/helper/hash_filehandle.c \
26 src/hashes/helper/hash_memory.c src/hashes/helper/hash_memory_multi.c src/hashes/md2.c src/hashes/md4.c \
27 src/hashes/md5.c src/hashes/rmd128.c src/hashes/rmd16
[all...]
H A Dcrypt.tex120 designing cryptosystems. It supports symmetric ciphers, one-way hashes, pseudo-random number generators,
123 The library was designed such that new ciphers/hashes/PRNGs can be added at run-time and the existing API
146 With this library all core functions (ciphers, hashes, prngs, and bignum) have the same prototype definition. They all load
150 that can be used to make a program automatically pick between ciphers, hashes and PRNGs at run-time. That means your
151 application can support all ciphers/hashes/prngs/bignum without changing the source code.
165 The LibTomCrypt package has also been written to be very modular. The block ciphers, one--way hashes,
195 of the ciphers and hashes are patent free or under patents that have since expired.
1764 Essentially all hash messages are virtually infinitely\footnote{Most hashes are limited to $2^{64}$ bits or 2,305,843,009,213,693,952 bytes.} long message which
1784 enough for the hash in question. Often hashes are used to get keys for symmetric ciphers so the \textit{XXX\_done()} functions
1793 example snippet that hashes
[all...]
/external/openssl/crypto/x509/
H A Dby_dir.c86 STACK_OF(BY_DIR_HASH) *hashes;
191 if (ent->hashes)
192 sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free);
252 ent->hashes = sk_BY_DIR_HASH_new(by_dir_hash_cmp);
254 if (!ent->dir || !ent->hashes)
338 if (type == X509_LU_CRL && ent->hashes)
342 idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp);
345 hent = sk_BY_DIR_HASH_value(ent->hashes, idx);
441 idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp);
444 sk_BY_DIR_HASH_value(ent->hashes, id
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSSignedData.java82 private Map hashes; field in class:CMSSignedData
111 * @param hashes a map of precomputed digests for content indexed by name of hash.
115 Map hashes,
119 this(hashes, CMSUtils.readContentInfo(sigBlock));
157 Map hashes,
161 this.hashes = hashes;
231 if (hashes == null)
237 Object obj = hashes.keySet().iterator().next();
238 byte[] hash = (obj instanceof String) ? (byte[])hashes
114 CMSSignedData( Map hashes, byte[] sigBlock) argument
156 CMSSignedData( Map hashes, ContentInfo sigData) argument
[all...]
/external/srtp/crypto/
H A DMakefile73 hashes = hash/null_auth.o hash/sha1.o \ macro
87 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(xfm)
/external/chromium/net/base/
H A Dtransport_security_state.h54 // IsChainOfPublicKeysPermitted takes a set of public key hashes and
57 // 2) |hashes| and |public_key_hashes| are not disjoint.
59 const std::vector<SHA1Fingerprint>& hashes);
H A Dtransport_security_state.cc269 // 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)
611 HashesToBase64String( const std::vector<net::SHA1Fingerprint>& hashes) argument
636 IsChainOfPublicKeysPermitted( const std::vector<net::SHA1Fingerprint>& hashes) argument
H A Dtransport_security_state_unittest.cc537 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));
H A Dx509_certificate_nss.cc624 std::vector<SHA1Fingerprint>* hashes) {
628 hashes->push_back(CertPublicKeyHash(node->cert));
630 hashes->push_back(CertPublicKeyHash(root_cert));
622 AppendPublicKeyHashes(CERTCertList* cert_list, CERTCertificate* root_cert, std::vector<SHA1Fingerprint>* hashes) argument
H A Dx509_certificate_win.cc469 std::vector<SHA1Fingerprint>* hashes) {
490 hashes->push_back(hash);
468 AppendPublicKeyHashes(PCCERT_CHAIN_CONTEXT chain, std::vector<SHA1Fingerprint>* hashes) argument
H A Dx509_certificate_mac.cc580 std::vector<SHA1Fingerprint>* hashes) {
597 hashes->push_back(hash);
579 AppendPublicKeyHashes(CFArrayRef chain, std::vector<SHA1Fingerprint>* hashes) argument
/external/valgrind/main/VEX/useful/
H A Dsmchash.c266 UInt* hashes = malloc( nHashes * sizeof(UInt) ); local
271 assert(hashes);
285 hashes[hashIx++] = hRunning;
310 free(hashes);
/external/e2fsprogs/e2fsck/
H A Drehash.c77 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[
[all...]
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashTestUtils.java50 byte[] hashes = new byte[hashBytes * 256];
57 System.arraycopy(hash, 0, hashes, i * hashBytes, hash.length);
61 byte[] result = hashFunction.hash(hashes, 0);
/external/webkit/Source/JavaScriptCore/
H A Dcreate_hash_table43 my @hashes = ();
76 @hashes = ();
98 push(@hashes, hashValue($key));
/external/srtp/
H A DMakefile79 hashes = crypto/hash/null_auth.o crypto/hash/sha1.o \ macro
96 cryptobj = $(ciphers) $(hashes) $(math) $(stat) $(kernel) $(replay)
/external/chromium/chrome/browser/
H A Denumerate_modules_model_win.cc106 // Location must be entered as hashes (see GenerateHash). Filename is mandatory.
625 std::string hashes(kModuleBlacklist[i].filename);
628 hashes += " - " + hash1;
630 hashes += " - " + hash2;
632 hashes += " - " + hash3;
949 // Construct the needed hashes.
/external/dropbear/
H A Dconfigure10897 mkdir -p libtomcrypt/src/hashes
10899 as_dir=libtomcrypt/src/hashes
10917 fi || { { echo "$as_me:$LINENO: error: cannot create directory libtomcrypt/src/hashes" >&5
10918 echo "$as_me: error: cannot create directory libtomcrypt/src/hashes" >&2;}
10922 mkdir -p libtomcrypt/src/hashes/chc
10924 as_dir=libtomcrypt/src/hashes/chc
10942 fi || { { echo "$as_me:$LINENO: error: cannot create directory libtomcrypt/src/hashes/chc" >&5
10943 echo "$as_me: error: cannot create directory libtomcrypt/src/hashes/chc" >&2;}
10947 mkdir -p libtomcrypt/src/hashes/helper
10949 as_dir=libtomcrypt/src/hashes/helpe
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 658 milliseconds