HomeSort by relevance Sort by last modified time
    Searched defs:hashes (Results 1 - 7 of 7) sorted by null

  /external/oprofile/daemon/
opd_cookie.c 100 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]);
opd_anon.c 43 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]);
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]);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 101 // in the particular array. I.e. for index N hash contained in hashes[N]
106 private final long[] hashes; field in class:Cache
113 // This is an ordered array of the hash codes from 'hashes' array (described
115 // the hash in the 'hashes' array. I.e. hash code ABCD00 with index 10 in
116 // the hashes array will be represented in this array as ABCD0A (10==0x0A)
135 hashes = new long[cache_size];
278 long idx_hash = (hashes[index] | (index+1));
282 // (hashes[index])
328 hashes[index] = hash;
  /external/chromium/net/third_party/nss/ssl/
ssl3ecc.c 249 SSL3Hashes *hashes, PRBool bypassPKCS11)
285 rv = ssl3_ComputeCommonKeyHash(hashBuf, bufLen, hashes, bypassPKCS11);
288 PRINT_BUF(95, (NULL, "ECDHkey hash: MD5 result", hashes->md5, MD5_LENGTH));
289 PRINT_BUF(95, (NULL, "ECDHkey hash: SHA1 result", hashes->sha, SHA1_LENGTH));
616 SSL3Hashes hashes; local
680 &hashes, ss->opt.bypassPKCS11);
687 rv = ssl3_VerifySignedHashes(&hashes, ss->sec.peerCert, &signature,
751 SSL3Hashes hashes; local
791 &hashes, ss->opt.bypassPKCS11);
808 rv = ssl3_SignHashes(&hashes, ss->serverCerts[certIndex].SERVERKEY,
    [all...]
ssl3con.c 4731 SSL3Hashes hashes; local
5106 SSL3Hashes hashes; local
6603 SSL3Hashes hashes; local
7854 SSL3Finished hashes; local
8169 SSL3Hashes hashes; \/* computed hashes are put here. *\/ local
    [all...]
  /external/e2fsprogs/e2fsck/
rehash.c 77 ext2_dirhash_t *hashes; member in struct:out_dir
232 new_mem = realloc(outdir->hashes,
236 outdir->hashes = new_mem;
239 outdir->hashes = malloc(blocks * sizeof(ext2_dirhash_t));
250 if (outdir->hashes)
251 free(outdir->hashes);
417 outdir->hashes[0] = 0;
440 outdir->hashes[outdir->num-1] = ent->hash | 1;
442 outdir->hashes[outdir->num-1] = ent->hash;
552 ext2fs_cpu_to_le32(outdir->hashes[i])
    [all...]

Completed in 621 milliseconds