Searched refs:hash (Results 351 - 375 of 1003) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dhash.cpp2 // Name: src/common/hash.cpp
7 // RCS-ID: $Id: hash.cpp 49529 2007-10-30 00:32:18Z VZ $
29 #include "wx/hash.h"
855 void wxHashTableBase::DoPut( long key, long hash, void* data ) argument
859 size_t bucket = size_t(hash) % m_size;
865 void wxHashTableBase::DoPut( const wxChar* key, long hash, void* data ) argument
869 size_t bucket = size_t(hash) % m_size;
875 void* wxHashTableBase::DoGet( long key, long hash ) const
879 size_t bucket = size_t(hash) % m_size;
899 void* wxHashTableBase::DoGet( const wxChar* key, long hash ) cons
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/libs/ec/cpp/
H A DRemoteConnect.cpp121 CMD4Hash hash; local
122 if (!hash.Decode(m_connectionPassword)) {
123 m_server_reply = _("Invalid password, not a MD5 hash!");
125 } else if (hash.IsEmpty()) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dinode.c17 #include <linux/hash.h>
57 * the hash list of the inode, used for lookups. The
576 static unsigned long hash(struct super_block *sb, unsigned long hashval) function
603 * list, the owning superblock and the inode hash. This needs to be done under
605 * itself. We calculate the hash list to add to here so it is all internal
611 struct hlist_head *head = inode_hashtable + hash(sb, inode->i_ino);
817 head = inode_hashtable + hash(sb, res);
916 * @hashval: hash value (usually inode number) to search for
937 struct hlist_head *head = inode_hashtable + hash(sb, hashval);
946 * @hashval: hash valu
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ncpfs/
H A Dncpsign_kernel.c111 unsigned char hash[16]; local
121 nwsign(server->sign_last, data, hash);
122 return memcmp(sign_buff, hash, 8);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/batman-adv/
H A Dicmp_socket.c28 #include "hash.h"
334 struct socket_client *hash = socket_client_hash[icmp_packet->uid]; local
336 if (hash)
337 bat_socket_add_packet(hash, icmp_packet, icmp_len);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drep062.tcl104 { 0 {btree ""} {hash ""} }
108 { 0 {hash ""} {queue ""} }
110 { 0 {hash ""} {queueext "-pagesize 16384"} }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Ds3_enc.c414 const EVP_MD *hash; local
422 if (!ssl_cipher_get_evp(s->session, &c, &hash, NULL, NULL, &comp)) {
428 s->s3->tmp.new_hash = hash;
435 num = EVP_MD_size(hash);
726 const EVP_MD_CTX *hash; local
736 hash = ssl->write_hash;
741 hash = ssl->read_hash;
744 t = EVP_MD_CTX_size(hash);
758 ssl3_cbc_record_digest_supported(hash)) {
769 * With SHA-1 (the largest hash spece
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/conf/
H A Dconf_api.c78 /* static unsigned long hash(CONF_VALUE *v); */
79 static unsigned long hash(const void *v_void);
192 if ((conf->data = lh_new(hash, cmp_conf)) == NULL)
208 /* We now have only 'section' entries in the hash table.
245 /* static unsigned long hash(CONF_VALUE *v) */
246 static unsigned long hash(const void *v_void) function
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/kernel/
H A Dvmlinux.lds.S166 .hash : AT(ADDR(.hash) - LOAD_OFFSET) { *(.hash) }
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv6/
H A Dip6_input.c166 u8 hash; local
184 hash = nexthdr & (MAX_INET_PROTOS - 1);
185 if ((ipprot = rcu_dereference(inet6_protos[hash])) != NULL) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/net/
H A Drequest_sock.h116 * lock sock while browsing the listening hash (otherwise it's deadlock prone).
242 u32 hash, struct request_sock *req,
250 req->dl_next = lopt->syn_table[hash];
253 lopt->syn_table[hash] = req;
241 reqsk_queue_hash_req(struct request_sock_queue *queue, u32 hash, struct request_sock *req, unsigned long timeout) argument
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/pppd/
H A Dchap_ms.c29 * The hash text (StdText) was taken from Win95 RASAPI32.DLL.
242 u_char hash[MD4_SIGNATURE_SIZE]; local
254 MD4Final(hash, &md4Context); /* Tell MD4 we're done */
256 ChallengeResponse((unsigned char *)rchallenge, hash, response->NTResp);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/xfs/linux-2.6/
H A Dxfs_buf.c31 #include <linux/hash.h>
256 * The buffer most not be on any hash - use xfs_buf_rele instead for
425 xfs_bufhash_t *hash; local
435 hash = &btp->bt_hash[hash_long((unsigned long)ioff, btp->bt_hashshift)];
437 spin_lock(&hash->bh_lock);
439 list_for_each_entry_safe(bp, n, &hash->bh_list, b_hash_list) {
452 new_bp->b_hash = hash;
453 list_add(&new_bp->b_hash_list, &hash->bh_list);
458 spin_unlock(&hash->bh_lock);
462 spin_unlock(&hash
777 xfs_bufhash_t *hash = bp->b_hash; local
1405 xfs_bufhash_t *hash; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ceph/crush/
H A Dmapper.c22 #include "hash.h"
81 s = crush_hash32_3(bucket->hash, x, bucket->id, 0) %
106 i = crush_hash32_3(bucket->hash, x, bucket->id, p) %
141 __u64 w = crush_hash32_4(bucket->h.hash,x, bucket->h.items[i],
201 t = (__u64)crush_hash32_4(bucket->h.hash, x, n, r,
228 draw = crush_hash32_3(bucket->h.hash, x, bucket->h.items[i], r);
454 * @x: hash input
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/mm/
H A Dtsb.c41 unsigned long hash = tsb_hash(v, PAGE_SHIFT, local
43 struct tsb *ent = &swapper_tsb[hash];
56 unsigned long tag, ent, hash; local
60 hash = tsb_hash(v, hash_shift, nentries);
61 ent = tsb + (hash * sizeof(struct tsb));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/crypto/
H A Dsha512_generic.c13 #include <crypto/internal/hash.h>
205 sha512_final(struct shash_desc *desc, u8 *hash) argument
209 __be64 *dst = (__be64 *)hash;
236 static int sha384_final(struct shash_desc *desc, u8 *hash) argument
242 memcpy(hash, D, 48);
H A Dwp512.c22 #include <crypto/internal/hash.h>
43 u64 hash[WP512_DIGEST_SIZE/8]; member in struct:wp512_ctx
787 state[0] = block[0] ^ (K[0] = wctx->hash[0]);
788 state[1] = block[1] ^ (K[1] = wctx->hash[1]);
789 state[2] = block[2] ^ (K[2] = wctx->hash[2]);
790 state[3] = block[3] ^ (K[3] = wctx->hash[3]);
791 state[4] = block[4] ^ (K[4] = wctx->hash[4]);
792 state[5] = block[5] ^ (K[5] = wctx->hash[5]);
793 state[6] = block[6] ^ (K[6] = wctx->hash[6]);
794 state[7] = block[7] ^ (K[7] = wctx->hash[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv4/netfilter/
H A Dnf_conntrack_l3proto_ipv4_compat.c37 n = rcu_dereference(net->ct.hash[st->bucket].first);
56 head = rcu_dereference(net->ct.hash[st->bucket].first);
92 struct nf_conntrack_tuple_hash *hash = v; local
93 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(hash);
104 if (NF_CT_DIRECTION(hash))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/netfilter/
H A Dnf_conntrack_standalone.c58 n = rcu_dereference(net->ct.hash[st->bucket].first);
77 head = rcu_dereference(net->ct.hash[st->bucket].first);
114 struct nf_conntrack_tuple_hash *hash = v; local
115 struct nf_conn *ct = nf_ct_tuplehash_to_ctrack(hash);
125 if (NF_CT_DIRECTION(hash))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/forked-daapd-0.19/src/
H A Dmisc.c456 uint32_t hash = 5381; local
460 hash = ((hash << 5) + hash) + *bytes;
464 return hash;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/gsoap/plugin/
H A Dwsse2api.c196 text. However, a digest algorithm can be used to hash the passwords and store
714 char hash[SOAP_SMD_SHA1_SIZE]; /**< SHA1 digest */ member in struct:soap_wsse_session
724 static int soap_wsse_session_verify(struct soap *soap, const char hash[SOAP_SMD_SHA1_SIZE], const char *created, const char *nonce);
726 static void calc_digest(struct soap *soap, const char *created, const char *nonce, int noncelen, const char *password, char hash[SOAP_SMD_SHA1_SIZE]);
1706 unsigned char hash[SOAP_SMD_MAX_SIZE]; local
1720 soap_base642s(soap, reference->DigestValue, (char*)hash, SOAP_SMD_MAX_SIZE, NULL);
1722 if (soap_wsse_verify_digest(soap, alg, reference->URI + 1, hash))
1732 @fn int soap_wsse_verify_digest(struct soap *soap, int alg, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE])
1733 @brief Verifies the digest value of an XML element referenced by id against the hash.
1737 @param[in] hash diges
1741 soap_wsse_verify_digest(struct soap *soap, int alg, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE]) argument
2116 soap_wsse_session_verify(struct soap *soap, const char hash[SOAP_SMD_SHA1_SIZE], const char *created, const char *nonce) argument
2202 calc_digest(struct soap *soap, const char *created, const char *nonce, int noncelen, const char *password, char hash[SOAP_SMD_SHA1_SIZE]) argument
[all...]
H A Dwsseapi.c195 text. However, a digest algorithm can be used to hash the passwords and store
776 char hash[SOAP_SMD_SHA1_SIZE]; /**< SHA1 digest */ member in struct:soap_wsse_session
790 static int soap_wsse_session_verify(struct soap *soap, const char hash[SOAP_SMD_SHA1_SIZE], const char *created, const char *nonce);
792 static void calc_digest(struct soap *soap, const char *created, const char *nonce, int noncelen, const char *password, char hash[SOAP_SMD_SHA1_SIZE]);
1800 unsigned char hash[SOAP_SMD_MAX_SIZE]; local
1818 soap_base642s(soap, reference->DigestValue, (char*)hash, SOAP_SMD_MAX_SIZE, NULL);
1820 if (soap_wsse_verify_digest(soap, alg, canonical, reference->URI + 1, hash))
1830 @fn int soap_wsse_verify_digest(struct soap *soap, int alg, int canonical, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE])
1831 @brief Verifies the digest value of an XML element referenced by id against the hash.
1836 @param[in] hash diges
1840 soap_wsse_verify_digest(struct soap *soap, int alg, int canonical, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE]) argument
2250 soap_wsse_session_verify(struct soap *soap, const char hash[SOAP_SMD_SHA1_SIZE], const char *created, const char *nonce) argument
2336 calc_digest(struct soap *soap, const char *created, const char *nonce, int noncelen, const char *password, char hash[SOAP_SMD_SHA1_SIZE]) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/gsoap/plugin/
H A Dwsse2api.c196 text. However, a digest algorithm can be used to hash the passwords and store
714 char hash[SOAP_SMD_SHA1_SIZE]; /**< SHA1 digest */ member in struct:soap_wsse_session
724 static int soap_wsse_session_verify(struct soap *soap, const char hash[SOAP_SMD_SHA1_SIZE], const char *created, const char *nonce);
726 static void calc_digest(struct soap *soap, const char *created, const char *nonce, int noncelen, const char *password, char hash[SOAP_SMD_SHA1_SIZE]);
1706 unsigned char hash[SOAP_SMD_MAX_SIZE]; local
1720 soap_base642s(soap, reference->DigestValue, (char*)hash, SOAP_SMD_MAX_SIZE, NULL);
1722 if (soap_wsse_verify_digest(soap, alg, reference->URI + 1, hash))
1732 @fn int soap_wsse_verify_digest(struct soap *soap, int alg, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE])
1733 @brief Verifies the digest value of an XML element referenced by id against the hash.
1737 @param[in] hash diges
1741 soap_wsse_verify_digest(struct soap *soap, int alg, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE]) argument
2116 soap_wsse_session_verify(struct soap *soap, const char hash[SOAP_SMD_SHA1_SIZE], const char *created, const char *nonce) argument
2202 calc_digest(struct soap *soap, const char *created, const char *nonce, int noncelen, const char *password, char hash[SOAP_SMD_SHA1_SIZE]) argument
[all...]
H A Dwsseapi.c195 text. However, a digest algorithm can be used to hash the passwords and store
776 char hash[SOAP_SMD_SHA1_SIZE]; /**< SHA1 digest */ member in struct:soap_wsse_session
790 static int soap_wsse_session_verify(struct soap *soap, const char hash[SOAP_SMD_SHA1_SIZE], const char *created, const char *nonce);
792 static void calc_digest(struct soap *soap, const char *created, const char *nonce, int noncelen, const char *password, char hash[SOAP_SMD_SHA1_SIZE]);
1800 unsigned char hash[SOAP_SMD_MAX_SIZE]; local
1818 soap_base642s(soap, reference->DigestValue, (char*)hash, SOAP_SMD_MAX_SIZE, NULL);
1820 if (soap_wsse_verify_digest(soap, alg, canonical, reference->URI + 1, hash))
1830 @fn int soap_wsse_verify_digest(struct soap *soap, int alg, int canonical, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE])
1831 @brief Verifies the digest value of an XML element referenced by id against the hash.
1836 @param[in] hash diges
1840 soap_wsse_verify_digest(struct soap *soap, int alg, int canonical, const char *id, unsigned char hash[SOAP_SMD_MAX_SIZE]) argument
2250 soap_wsse_session_verify(struct soap *soap, const char hash[SOAP_SMD_SHA1_SIZE], const char *created, const char *nonce) argument
2336 calc_digest(struct soap *soap, const char *created, const char *nonce, int noncelen, const char *password, char hash[SOAP_SMD_SHA1_SIZE]) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/s390/block/
H A Ddasd_devmap.c99 int hash, i; local
101 hash = 0;
103 hash += *bus_id;
104 return hash & 0xff;
410 int hash; local
418 hash = dasd_hash_busid(bus_id);
419 list_for_each_entry(tmp, &dasd_hashlists[hash], list)
430 list_add(&new->list, &dasd_hashlists[hash]);
446 int hash; local
450 hash
[all...]

Completed in 308 milliseconds

<<11121314151617181920>>