Searched refs:hash (Results 151 - 175 of 509) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-core/
H A Dhashmap.c216 unsigned hash = 0; local
221 hash = 31 * hash + *p;
223 return hash;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/afpd/
H A Dhash.h17 * $Id: hash.h,v 1.2 2009-10-02 09:32:40 franklahm Exp $
25 #include <atalk/hash.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/apps/
H A Dpasswd.c420 char *hash = NULL; local
481 /* now compute password hash */
484 hash = DES_crypt(passwd, *salt_p);
488 hash = md5crypt(passwd, (use1 ? "1" : "apr1"), *salt_p);
490 assert(hash != NULL);
493 BIO_printf(out, "%s\t%s\n", passwd, hash);
495 BIO_printf(out, "%s\t%s\n", hash, passwd);
497 BIO_printf(out, "%s\n", hash);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/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);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv6/
H A Desp6.c317 struct crypto_hash *hash; local
321 hash = crypto_alloc_hash(x->aalg->alg_name, 0,
323 if (IS_ERR(hash))
326 esp->auth.tfm = hash;
327 if (crypto_hash_setkey(hash, esp->auth.key, esp->auth.key_len))
334 crypto_hash_digestsize(hash)) {
337 crypto_hash_digestsize(hash),
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dnf_conntrack_core.c815 unsigned int hash = hash_conntrack(tuple); local
817 list_for_each_entry(h, &nf_conntrack_hash[hash], list) {
848 unsigned int hash,
853 &nf_conntrack_hash[hash]);
860 unsigned int hash, repl_hash; local
862 hash = hash_conntrack(&ct->tuplehash[IP_CT_DIR_ORIGINAL].tuple);
866 __nf_conntrack_hash_insert(ct, hash, repl_hash);
871 /* Confirm a connection given skb; places it in hash table */
875 unsigned int hash, repl_hash; local
890 hash
847 __nf_conntrack_hash_insert(struct nf_conn *ct, unsigned int hash, unsigned int repl_hash) argument
1020 unsigned int hash = hash_conntrack(orig); local
1545 free_conntrack_hash(struct list_head *hash, int vmalloced, int size) argument
1603 struct list_head *hash; local
1628 struct list_head *hash, *old_hash; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/ssl/
H A Ds3_enc.c351 const EVP_MD *hash; local
359 if (!ssl_cipher_get_evp(s->session,&c,&hash,&comp))
366 s->s3->tmp.new_hash=hash;
369 num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c);
572 const EVP_MD *hash; local
582 hash=ssl->write_hash;
589 hash=ssl->read_hash;
592 md_size=EVP_MD_size(hash);
598 EVP_DigestInit_ex( &md_ctx,hash, NULL);
610 EVP_DigestInit_ex( &md_ctx,hash, NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/ssl/
H A Ds3_enc.c363 const EVP_MD *hash; local
371 if (!ssl_cipher_get_evp(s->session,&c,&hash,&comp))
378 s->s3->tmp.new_hash=hash;
385 num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c);
586 const EVP_MD *hash; local
596 hash=ssl->write_hash;
603 hash=ssl->read_hash;
606 md_size=EVP_MD_size(hash);
612 EVP_DigestInit_ex( &md_ctx,hash, NULL);
624 EVP_DigestInit_ex( &md_ctx,hash, NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Dhmac.c175 struct crypto_hash *hash; local
180 hash = crypto_spawn_hash(spawn);
181 if (IS_ERR(hash))
182 return PTR_ERR(hash);
184 ctx->child = hash;
270 MODULE_DESCRIPTION("HMAC hash algorithm");
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Dutils.c275 /* Simple, efficient hash function from Daniel J. Bernstein */
279 unsigned int hash = 5381; local
284 hash = ((hash << 5) + hash) + (*str);
287 return hash;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/
H A Dinet_hashtables.c28 * The bindhash mutex for snum's hash chain must be held here.
205 unsigned int hash = inet_ehashfn(daddr, lport, saddr, inet->dport); local
206 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash);
218 if (INET_TW_MATCH(sk2, hash, acookie, saddr, daddr, ports, dif)) {
229 if (INET_MATCH(sk2, hash, acookie, saddr, daddr, ports, dif))
235 * in hash table socket with a funny identity. */
238 sk->sk_hash = hash;
248 /* Silly. Should hash-dance instead... */
270 * Bind a port for a connect operation and hash it.
359 /* No definite answer... Walk to established hash tabl
[all...]
H A Dip_input.c213 int hash; local
218 hash = protocol & (MAX_INET_PROTOS - 1);
219 raw_sk = sk_head(&raw_v4_htable[hash]);
224 if (raw_sk && !raw_v4_input(skb, ip_hdr(skb), hash))
227 if ((ipprot = rcu_dereference(inet_protos[hash])) != NULL) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext3/
H A Dnamei.c98 __le32 hash; member in struct:dx_entry
104 * dirent the two low bits of the hash version will be zero. Therefore, the
105 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
142 u32 hash; member in struct:dx_map_entry
169 static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
170 static int ext3_htree_next_block(struct inode *dir, __u32 hash,
196 return le32_to_cpu(entry->hash);
201 entry->hash = cpu_to_le32(value);
277 printk(":%x.%u ", h.hash,
300 u32 block = dx_get_block(entries), hash local
338 u32 hash; local
465 ext3_htree_next_block(struct inode *dir, __u32 hash, struct dx_frame *frame, struct dx_frame *frames, __u32 *start_hash) argument
724 dx_insert_block(struct dx_frame *frame, u32 hash, u32 block) argument
934 u32 hash; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext4/
H A Dnamei.c98 __le32 hash; member in struct:dx_entry
104 * dirent the two low bits of the hash version will be zero. Therefore, the
105 * hash version mod 4 should never be 0. Sincerely, the paranoia department.
142 u32 hash; member in struct:dx_map_entry
169 static void dx_insert_block (struct dx_frame *frame, u32 hash, u32 block);
170 static int ext4_htree_next_block(struct inode *dir, __u32 hash,
196 return le32_to_cpu(entry->hash);
201 entry->hash = cpu_to_le32(value);
277 printk(":%x.%u ", h.hash,
300 u32 block = dx_get_block(entries), hash local
338 u32 hash; local
465 ext4_htree_next_block(struct inode *dir, __u32 hash, struct dx_frame *frame, struct dx_frame *frames, __u32 *start_hash) argument
722 dx_insert_block(struct dx_frame *frame, u32 hash, u32 block) argument
932 u32 hash; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Ddcache.c24 #include <linux/hash.h>
54 * This hash-function tries to avoid losing too many bits of hash
55 * information, yet avoid using a prime hash-size or similar.
91 /* if dentry was never inserted into hash, immediate free is OK */
149 * dentries that are no longer on any hash chain on the unused
917 dentry->d_name.hash = name->hash;
960 q.hash = full_name_hash(q.name, q.len);
1013 unsigned int hash local
1089 d_hash(struct dentry *parent, unsigned long hash) argument
1254 unsigned int hash = name->hash; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/tc/
H A Df_u32.c45 __u32 htid=0, hash=0, nodeid=0; local
60 hash = strtoul(str, &tmp, 16);
63 if (hash>=0x100)
74 *handle = (htid<<20)|(hash<<12)|nodeid;
82 __u32 hash = TC_U32_HASH(handle); local
95 if (nodeid|hash) {
96 if (hash) {
97 int l = snprintf(b, bsize, "%x", hash);
856 fprintf(stderr, "\"link\" must be a hash table.\n");
868 fprintf(stderr, "\"ht\" must be a hash tabl
876 __u32 hash; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dlinear.c34 dev_info_t *hash; local
43 hash = conf->hash_table[block];
45 while ((sector>>1) >= (hash->size + hash->offset))
46 hash++;
47 return hash;
179 /* min_spacing is the minimum spacing that will fit the hash
225 * Here we generate the linear hash table
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/cifs/
H A Ddir.c570 unsigned long hash; local
573 hash = init_name_hash();
575 hash = partial_name_hash(nls_tolower(codepage, q->name[i]),
576 hash);
577 q->hash = end_name_hash(hash);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/
H A Dinet_hashtables.h106 * TCP hash as well as the others for fast bind/connect.
133 unsigned int hash)
135 return &hashinfo->ehash[hash & (hashinfo->ehash_size - 1)];
343 * Sockets in TCP_CLOSE state are _always_ taken out of the hash, so we need
361 unsigned int hash = inet_ehashfn(daddr, hnum, saddr, sport); local
362 struct inet_ehash_bucket *head = inet_ehash_bucket(hashinfo, hash);
367 if (INET_MATCH(sk, hash, acookie, saddr, daddr, ports, dif))
371 /* Must check for a TIME_WAIT'er before going to listener hash. */
373 if (INET_TW_MATCH(sk, hash, acookie, saddr, daddr, ports, dif))
131 inet_ehash_bucket( struct inet_hashinfo *hashinfo, unsigned int hash) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/ipvs/
H A Dip_vs_lblc.c75 * for IPVS lblc entry hash table
98 * IPVS lblc hash table
102 struct list_head bucket[IP_VS_LBLC_TAB_SIZE]; /* hash bucket */
197 * Returns hash value for IPVS LBLC entry
212 unsigned hash; local
223 hash = ip_vs_lblc_hashkey(en->addr);
226 list_add(&en->list, &tbl->bucket[hash]);
240 unsigned hash; local
243 hash = ip_vs_lblc_hashkey(addr);
247 list_for_each_entry(en, &tbl->bucket[hash], lis
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/BerkeleyDB/
H A DBerkeleyDB.xs233 SV * hash ;
271 SV * hash ;
355 hash_delete(char * hash, char * key);
408 #define SetValue_iv(i, k) if ((sv = readHash(hash, k)) && sv != &PL_sv_undef) \
410 #define SetValue_io(i, k) if ((sv = readHash(hash, k)) && sv != &PL_sv_undef) \
412 #define SetValue_sv(i, k) if ((sv = readHash(hash, k)) && sv != &PL_sv_undef) \
414 #define SetValue_pv(i, k,t) if ((sv = readHash(hash, k)) && sv != &PL_sv_undef) \
416 #define SetValue_pvx(i, k, t) if ((sv = readHash(hash, k)) && sv != &PL_sv_undef) \
418 #define SetValue_ov(i,k,t) if ((sv = readHash(hash, k)) && sv != &PL_sv_undef) {\
423 #define SetValue_ovx(i,k,t) if ((sv = readHash(hash,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/perl/DB_File/
H A DDB_File.xs32 1.05 - Added logic to allow prefix & hash types to be specified via
304 HASHINFO hash ;
324 #define db_HA_hash hash.hash
325 #define db_HA_ffactor hash.ffactor
326 #define db_HA_nelem hash.nelem
327 #define db_HA_bsize hash.bsize
328 #define db_HA_cachesize hash.cachesize
329 #define db_HA_lorder hash.lorder
393 SV * hash ;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/char/drm/
H A Ddrm_vm.c86 drm_hash_item_t *hash; local
97 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash))
100 r_list = drm_hash_entry(hash, drm_map_list_t, hash);
566 drm_hash_item_t *hash; local
586 if (drm_ht_find_item(&dev->map_hash, vma->vm_pgoff, &hash)) {
591 map = drm_hash_entry(hash, drm_map_list_t, hash)->map;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/802/
H A Dtr.c62 * We hash the RIF cache 32 ways. We do after all have to look it
249 unsigned int hash; local
270 hash = rif_hash(trh->daddr);
272 * Walk the hash table and look for an entry
274 for(entry=rif_table[hash];entry && memcmp(&(entry->addr[0]),&(trh->daddr[0]),TR_ALEN);entry=entry->next);
338 unsigned int hash, rii_p = 0; local
359 hash = rif_hash(trh->saddr);
360 for(entry=rif_table[hash];entry && memcmp(&(entry->addr[0]),&(trh->saddr[0]),TR_ALEN);entry=entry->next);
381 entry->next=rif_table[hash];
383 rif_table[hash]
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/xfs/linux-2.6/
H A Dxfs_buf.c31 #include <linux/hash.h>
306 * The buffer most not be on any hash - use xfs_buf_rele instead for
480 xfs_bufhash_t *hash; local
490 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
492 spin_lock(&hash->bh_lock);
494 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
503 list_move(&bp->b_hash_list, &hash->bh_list);
512 new_bp->b_hash = hash;
513 list_add(&new_bp->b_hash_list, &hash->bh_list);
518 spin_unlock(&hash
824 xfs_bufhash_t *hash = bp->b_hash; local
1367 xfs_bufhash_t *hash; local
[all...]

Completed in 153 milliseconds

1234567891011>>