Searched refs:hash (Results 26 - 50 of 95) sorted by relevance

1234

/barrelfish-master/lib/libc/db/test/hash.tests/
H A Dtcreat3.c67 ctl.hash = NULL;
75 fprintf(stderr, "cannot create: hash table (size %d)\n",
H A Dtread2.c70 ctl.hash = NULL;
77 fprintf(stderr, "cannot open: hash table\n" );
H A Dtverify.c71 ctl.hash = NULL;
78 fprintf(stderr, "cannot open: hash table\n" );
H A Dtdel.c69 ctl.hash = NULL;
77 fprintf(stderr, "cannot create: hash table size %d)\n",
H A Dthash4.c71 ctl.hash = NULL;
79 fprintf(stderr, "cannot create: hash table size %d)\n",
/barrelfish-master/lib/openssl-1.0.0d/crypto/txt_db/
H A Dtxt_db.h103 LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp);
/barrelfish-master/include/openssl/
H A Dtxt_db.h103 LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp);
H A Dlhash.h59 /* Header for dynamic hash table routines
84 unsigned long hash; member in struct:lhash_node_st
100 /* First: "hash" functions */
142 LHASH_HASH_FN_TYPE hash; member in struct:lhash_st
/barrelfish-master/include/vm/
H A Duma_int.h45 * managing a hash of page addresses that maps pages to uma_slab_t structures
121 * size of the hash table for uma_slabs that are managed off page. This hash
146 int uh_hashsize; /* Current size of the hash table */
241 SLIST_ENTRY(uma_slab) us_hlink; /* Link for hash table */
339 static __inline uma_slab_t hash_sfind(struct uma_hash *hash, uint8_t *data);
375 * Find a slab within a hash table. This is used for OFFPAGE zones to lookup
379 * hash The hash table to search.
386 hash_sfind(struct uma_hash *hash, uint8_ argument
[all...]
/barrelfish-master/usr/proc_mgmt/
H A Ddomain.h37 uint64_t hash; member in struct:domain_cap_node
H A Ddomain.c61 err = domain_cap_hash(node->domain_cap, &node->hash);
128 collections_hash_insert(domain_table, cap_node->hash, entry);
164 // XXX slow since we traverse the whole hash map
171 // XXX traverse whole hash table since it seems to not
172 // reset the internal lists when resetting the traversal of the hash table
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Dpasswd.c421 char *hash = NULL; local
483 /* now compute password hash */
486 hash = DES_crypt(passwd, *salt_p);
490 hash = md5crypt(passwd, (use1 ? "1" : "apr1"), *salt_p);
492 assert(hash != NULL);
495 BIO_printf(out, "%s\t%s\n", passwd, hash);
497 BIO_printf(out, "%s\t%s\n", hash, passwd);
499 BIO_printf(out, "%s\n", hash);
H A Dcrl.c83 " -hash - print hash value\n",
110 int hash=0,issuer=0,lastupdate=0,nextupdate=0,noout=0,text=0; local
193 else if (strcmp(*argv,"-hash") == 0)
194 hash= ++num;
302 if (hash == i)
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Dbip_tconv.c1018 /* compute hash value of a string of given length */
1020 #define Hashl(id, hash, n) { \
1023 for (hash = 0; length > 0; str++, --length) \
1024 hash += (hash<<3) + *(unsigned char *)str; \
1030 * This hash function is the same as the simple one above as long as
1034 * the hash value. The code is a bit tricky because we want to make sure
1040 #define Hashl(id, hash, n) { \
1044 hash = 0; \
1046 hash
1054 _term_hash(value vterm, type tterm, uword maxdepth, uword hash, int *pres) argument
[all...]
H A Ddict.c140 For finding DIDs when their name is given, there is a hash table of size
141 DICT_HASH_TABLE_SIZE. The hash value is computed from the name only, not
142 from the arity. Thus all functors with the same name hash onto the same
143 slot of the hash table (together with other functors whose name happens to
144 give the same hash value). All colliding entries are kept in a circular
146 is referenced from the hash table is marked with the 'head' bit.
185 /* compute hash value and length of a NULL-terminated string */
186 #define Hash(id, hash, length) { \
188 for (length = hash = 0; *str; str++, length++) \
189 hash
1415 uword hash; member in struct:constant_entry
1514 uword hash; local
[all...]
/barrelfish-master/lib/libc/db/hash/
H A Dhash.c34 static char sccsid[] = "@(#)hash.c 8.9 (Berkeley) 6/16/94";
55 #include "hash.h"
136 if (info && info->hash)
137 hashp->hash = info->hash;
139 hashp->hash = __default_hash;
149 /* Verify file type, versions and hash function */
156 if ((int32_t)hashp->hash(CHARKEY, sizeof(CHARKEY)) != hashp->H_CHARKEY)
285 hashp->hash = __default_hash;
311 if (info->hash)
[all...]
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Ds3_enc.c391 const EVP_MD *hash; local
399 if (!ssl_cipher_get_evp(s->session,&c,&hash,NULL,NULL,&comp))
406 s->s3->tmp.new_hash=hash;
413 num=EVP_MD_size(hash);
702 const EVP_MD_CTX *hash; local
713 hash=ssl->write_hash;
720 hash=ssl->read_hash;
723 t=EVP_MD_CTX_size(hash);
732 EVP_MD_CTX_copy_ex( &md_ctx,hash);
744 EVP_MD_CTX_copy_ex( &md_ctx,hash);
[all...]
H A Dt1_enc.c551 const EVP_MD *hash; local
564 if (!ssl_cipher_get_evp(s->session,&c,&hash,&mac_type,&mac_secret_size,&comp))
571 s->s3->tmp.new_hash=hash;
880 EVP_MD_CTX *hash; local
892 hash=ssl->write_hash;
898 hash=ssl->read_hash;
901 t=EVP_MD_CTX_size(hash);
914 mac_ctx = hash;
918 EVP_MD_CTX_copy(&hmac,hash);
/barrelfish-master/include/sys/
H A Dumtx.h151 int hash; member in struct:umtx_key
/barrelfish-master/include/
H A Ddb.h136 uint32_t /* hash function */
137 (*hash)(const void *, size_t); member in struct:__anon62
/barrelfish-master/lib/cxx/cxx/
H A Dmemory.cpp185 return muts[hash<const void*>()(p) & (__sp_mut_count-1)];
/barrelfish-master/lib/openssl-1.0.0d/crypto/conf/
H A Dconf_lib.c72 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash) argument
78 conf->data = hash;
/barrelfish-master/lib/openssl-1.0.0d/crypto/lhash/
H A Dlhash.h59 /* Header for dynamic hash table routines
84 unsigned long hash; member in struct:lhash_node_st
100 /* First: "hash" functions */
142 LHASH_HASH_FN_TYPE hash; member in struct:lhash_st
/barrelfish-master/lib/openssl-1.0.0d/engines/
H A De_capi.c790 HCRYPTHASH hash; local
833 /* Create the hash object */
834 if(!CryptCreateHash(capi_key->hprov, alg, 0, 0, &hash))
840 /* Set the hash value to the value passed */
842 if(!CryptSetHashParam(hash, HP_HASHVAL, (unsigned char *)m, 0))
852 if(!CryptSignHashA(hash, capi_key->keyspec, NULL, 0, sigret, &slen))
875 CryptDestroyHash(hash);
946 HCRYPTHASH hash; local
971 /* Create the hash object */
972 if(!CryptCreateHash(capi_key->hprov, CALG_SHA1, 0, 0, &hash))
[all...]
/barrelfish-master/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Dmcg.c110 u16 *hash, u8 op_mod) {
118 *hash = imm;
654 * If GID is found in MGM or MGM is empty, *index = *hash, *prev = -1
658 * previous entry in hash chain and *mgm holds AMGM entry.
661 * entry in hash chain and *mgm holds end of hash chain.
670 u16 hash; local
682 err = mlx4_GID_HASH(dev, mailbox, &hash, op_mod);
689 hash);
692 *index = hash;
109 mlx4_GID_HASH(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, u16 *hash, u8 op_mod) argument
[all...]

Completed in 493 milliseconds

1234