Searched refs:hash (Results 201 - 225 of 509) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/cgi-bin/
H A DjScrollPane.js792 // Legal hash values aren't necessarily legal jQuery selectors so we need to catch any
1013 if (location.hash && location.hash.length > 1) {
1016 hash = escape(location.hash.substr(1)) // hash must be escaped to prevent XSS
1019 e = $('#' + hash + ', a[name="' + hash + '"]');
1024 if (e.length && pane.find(hash)) {
1025 // nasty workaround but it appears to take a little while before the hash ha
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/prebuilt/WW/www/script/
H A DjScrollPane.js792 // Legal hash values aren't necessarily legal jQuery selectors so we need to catch any
1013 if (location.hash && location.hash.length > 1) {
1016 hash = escape(location.hash.substr(1)) // hash must be escaped to prevent XSS
1019 e = $('#' + hash + ', a[name="' + hash + '"]');
1024 if (e.length && pane.find(hash)) {
1025 // nasty workaround but it appears to take a little while before the hash ha
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/scripts/kconfig/
H A Dsymbol.c651 int hash = 0; local
662 hash += *ptr;
663 hash &= 0xff;
665 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) {
675 hash = 256;
686 symbol->next = symbol_hash[hash];
687 symbol_hash[hash] = symbol;
696 int hash = 0; local
709 hash += *ptr;
710 hash
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dxt_hashlimit.c33 MODULE_DESCRIPTION("iptables match for limiting per hash-bucket");
42 /* hash table crap */
81 u_int32_t rnd; /* random seed for hash */
89 struct hlist_head hash[0]; /* hashtable itself */ member in struct:xt_hashlimit_htable
113 u_int32_t hash = hash_dst(ht, dst); local
115 if (!hlist_empty(&ht->hash[hash])) {
116 hlist_for_each_entry(ent, pos, &ht->hash[hash], node)
129 /* initialize hash wit
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/kconfig/
H A Dsymbol.c651 int hash = 0; local
662 hash += *ptr;
663 hash &= 0xff;
665 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) {
675 hash = 256;
685 symbol->next = symbol_hash[hash];
686 symbol_hash[hash] = symbol;
695 int hash = 0; local
708 hash += *ptr;
709 hash
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/cxgb3/
H A Dxgmac.c256 /* Calculate the RX hash filter index of an Ethernet address */
259 int hash = 0, octet, bit, i = 0, c; local
263 hash ^= (c & 1) << i;
267 return hash;
292 int hash = hash_hw_addr(addr); local
294 if (hash < 32)
295 hash_lo |= (1 << hash);
297 hash_hi |= (1 << (hash - 32));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/
H A Desp4.c353 struct crypto_hash *hash; local
357 hash = crypto_alloc_hash(x->aalg->alg_name, 0,
359 if (IS_ERR(hash))
362 esp->auth.tfm = hash;
363 if (crypto_hash_setkey(hash, esp->auth.key, esp->auth.key_len))
370 crypto_hash_digestsize(hash)) {
373 crypto_hash_digestsize(hash),
H A Dip_fragment.c132 /* Relink to new hash chain. */
291 unsigned int hash; local
294 hash = ipqhashfn(qp_in->id, qp_in->saddr, qp_in->daddr,
297 /* With SMP race we have to recheck hash table, because
301 hlist_for_each_entry(qp, n, &ipq_hash[hash], list) {
321 hlist_add_head(&qp->list, &ipq_hash[hash]);
372 unsigned int hash; local
377 hash = ipqhashfn(id, saddr, daddr, protocol);
378 hlist_for_each_entry(qp, n, &ipq_hash[hash], list) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/ipvs/
H A Dip_vs_proto_tcp.c495 __u16 hash; local
499 hash = tcp_app_hashkey(port);
502 list_for_each_entry(i, &tcp_apps[hash], p_list) {
508 list_add(&inc->p_list, &tcp_apps[hash]);
530 int hash; local
539 hash = tcp_app_hashkey(cp->vport);
542 list_for_each_entry(inc, &tcp_apps[hash], p_list) {
H A Dip_vs_ctl.c283 * Returns hash value for virtual service
295 * Returns hash value of fwmark for virtual service lookup
309 unsigned hash; local
321 hash = ip_vs_svc_hashkey(svc->protocol, svc->addr, svc->port);
322 list_add(&svc->s_list, &ip_vs_svc_table[hash]);
327 hash = ip_vs_svc_fwm_hashkey(svc->fwmark);
328 list_add(&svc->f_list, &ip_vs_svc_fwm_table[hash]);
370 unsigned hash; local
374 hash = ip_vs_svc_hashkey(protocol, vaddr, vport);
376 list_for_each_entry(svc, &ip_vs_svc_table[hash], s_lis
395 unsigned hash; local
497 unsigned hash; local
536 unsigned hash; local
[all...]
H A Dip_vs_lblcr.c75 * for IPVS lblcr entry hash table
287 * IPVS lblcr hash table
291 struct list_head bucket[IP_VS_LBLCR_TAB_SIZE]; /* hash bucket */
383 * Returns hash value for IPVS LBLCR entry
398 unsigned hash; local
409 hash = ip_vs_lblcr_hashkey(en->addr);
412 list_add(&en->list, &tbl->bucket[hash]);
426 unsigned hash; local
429 hash = ip_vs_lblcr_hashkey(addr);
433 list_for_each_entry(en, &tbl->bucket[hash], lis
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/netfilter/
H A Dipt_CLUSTERIP.c61 u_int32_t hash_initval; /* hash initialization */
292 clusterip_responsible(struct clusterip_config *config, u_int32_t hash) argument
294 return test_bit(hash - 1, &config->local_nodes);
312 u_int32_t hash; local
335 hash = clusterip_hashfn(*pskb, cipinfo->config);
339 ct->mark = hash;
353 DEBUGP("hash=%u ct_hash=%u ", hash, ct->mark);
354 if (!clusterip_responsible(cipinfo->config, hash)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Dwp512.c44 u64 hash[WP512_DIGEST_SIZE/8]; member in struct:wp512_ctx
788 state[0] = block[0] ^ (K[0] = wctx->hash[0]);
789 state[1] = block[1] ^ (K[1] = wctx->hash[1]);
790 state[2] = block[2] ^ (K[2] = wctx->hash[2]);
791 state[3] = block[3] ^ (K[3] = wctx->hash[3]);
792 state[4] = block[4] ^ (K[4] = wctx->hash[4]);
793 state[5] = block[5] ^ (K[5] = wctx->hash[5]);
794 state[6] = block[6] ^ (K[6] = wctx->hash[6]);
795 state[7] = block[7] ^ (K[7] = wctx->hash[7]);
973 wctx->hash[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/decnet/
H A Ddn_route.c24 * Steve Whitehouse : Dave Miller's dynamic hash table sizing and
279 static int dn_insert_route(struct dn_route *rt, unsigned hash, struct dn_route **rp) argument
284 rthp = &dn_rt_hash_table[hash].chain;
286 spin_lock_bh(&dn_rt_hash_table[hash].lock);
292 dn_rt_hash_table[hash].chain);
293 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rth);
298 spin_unlock_bh(&dn_rt_hash_table[hash].lock);
307 rcu_assign_pointer(rt->u.dst.dn_next, dn_rt_hash_table[hash].chain);
308 rcu_assign_pointer(dn_rt_hash_table[hash].chain, rt);
313 spin_unlock_bh(&dn_rt_hash_table[hash]
891 unsigned hash; local
1169 unsigned hash = dn_hash(flp->fld_src, flp->fld_dst); local
1225 unsigned hash; local
1442 unsigned hash = dn_hash(cb->src, cb->dst); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dfnmatch_loop.c471 int32_t hash; local
493 hash = elem_hash (str, c1);
496 elem = hash % table_size;
499 second = hash % (table_size - 2) + 1;
504 if (symb_table[2 * elem] == hash
692 int32_t hash; local
715 hash = elem_hash (str, c1);
718 elem = hash % table_size;
721 second = hash % (table_size - 2) + 1;
726 if (symb_table[2 * elem] == hash
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/ssl/
H A Dt1_enc.c438 const EVP_MD *hash; local
449 if (!ssl_cipher_get_evp(s->session,&c,&hash,&comp))
456 s->s3->tmp.new_hash=hash;
458 num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c);
698 const EVP_MD *hash; local
709 hash=ssl->write_hash;
716 hash=ssl->read_hash;
719 md_size=EVP_MD_size(hash);
729 HMAC_Init_ex(&hmac,mac_sec,EVP_MD_size(hash),hash,NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/ssl/
H A Dt1_enc.c449 const EVP_MD *hash; local
460 if (!ssl_cipher_get_evp(s->session,&c,&hash,&comp))
467 s->s3->tmp.new_hash=hash;
469 num=EVP_CIPHER_key_length(c)+EVP_MD_size(hash)+EVP_CIPHER_iv_length(c);
717 const EVP_MD *hash; local
728 hash=ssl->write_hash;
735 hash=ssl->read_hash;
738 md_size=EVP_MD_size(hash);
748 HMAC_Init_ex(&hmac,mac_sec,EVP_MD_size(hash),hash,NUL
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wireless/zd1211rw/
H A Dzd_chip.h424 /* Group hash table for filtering incoming packets.
426 * The group hash table is 64 bit large and split over two parts. The first
428 * address are used as index. Packets are received if the hash table bit is
904 static inline void zd_mc_clear(struct zd_mc_hash *hash) argument
906 hash->low = 0;
908 * The hash of the broadcast address ff:ff:ff:ff:ff:ff is 63.
910 hash->high = 0x80000000;
913 static inline void zd_mc_add_all(struct zd_mc_hash *hash) argument
915 hash->low = hash
918 zd_mc_add_addr(struct zd_mc_hash *hash, u8 *addr) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_server/
H A Dsrv_pipe.c55 unsigned char *hash = p->ntlmssp_hash; local
56 unsigned char index_i = hash[256];
57 unsigned char index_j = hash[257];
65 index_j += hash[index_i];
67 tc = hash[index_i];
68 hash[index_i] = hash[index_j];
69 hash[index_j] = tc;
71 t = hash[index_i] + hash[index_
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/smbfs/
H A Ddir.c337 unsigned long hash; local
340 hash = init_name_hash();
342 hash = partial_name_hash(tolower(this->name[i]), hash);
343 this->hash = end_name_hash(hash);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/nfsd/
H A Dnfs4idmap.c117 uint32_t hash; local
119 hash = hash_str(ent->authname, ENT_HASHBITS);
120 hash = hash_long(hash ^ ent->id, ENT_HASHBITS);
124 hash ^= 1;
126 return hash;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sctp/
H A Dinput.c648 /* Insert endpoint into the hash table. */
670 /* Add an endpoint to the hash. Local BH-safe. */
678 /* Remove endpoint from the hash table. */
702 /* Remove endpoint from the hash. Local BH-safe. */
716 int hash; local
718 hash = sctp_ep_hashfn(ntohs(laddr->v4.sin_port));
719 head = &sctp_ep_hashtable[hash];
736 /* Insert association into the hash table. */
760 /* Add an association to the hash. Local BH-safe. */
771 /* Remove association from the hash tabl
817 int hash; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/apps/
H A Dcrl.c83 " -hash - print hash value\n",
109 int hash=0,issuer=0,lastupdate=0,nextupdate=0,noout=0,text=0; local
192 else if (strcmp(*argv,"-hash") == 0)
193 hash= ++num;
285 if (hash == i)
H A Dopenssl.c134 /* The LHASH callbacks ("hash" & "cmp") have been replaced by functions with the
139 /* static unsigned long MS_CALLBACK hash(FUNCTION *a); */
140 static unsigned long MS_CALLBACK hash(const void *a_void);
521 if ((ret=lh_new(hash, cmp)) == NULL)
536 /* static unsigned long MS_CALLBACK hash(FUNCTION *a) */
537 static unsigned long MS_CALLBACK hash(const void *a_void) function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Dcrl.c83 " -hash - print hash value\n",
109 int hash=0,issuer=0,lastupdate=0,nextupdate=0,noout=0,text=0; local
192 else if (strcmp(*argv,"-hash") == 0)
193 hash= ++num;
285 if (hash == i)

Completed in 302 milliseconds

1234567891011>>