Searched refs:hash (Results 76 - 100 of 509) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dhash.c0 /* hash - implement simple hashing table with string based keys.
21 #include "hash.h"
29 /* Since this simple implementation of hash tables allows only insertion, no
85 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
106 /* Delete a hash table's contents.
117 /* Compute a hash code for a key consisting of KEYLEN bytes starting at KEY
125 /* Compute the hash value for the given string. The algorithm
143 /* Look up a given key in the hash table.
151 unsigned long int hash; local
155 /* First hash functio
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/
H A Dhash.c0 /* hash - implement simple hashing table with string based keys.
21 #include "hash.h"
29 /* Since this simple implementation of hash tables allows only insertion, no
85 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
106 /* Delete a hash table's contents.
117 /* Compute a hash code for a key consisting of KEYLEN bytes starting at KEY
125 /* Compute the hash value for the given string. The algorithm
143 /* Look up a given key in the hash table.
151 unsigned long int hash; local
155 /* First hash functio
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/autofs/
H A Ddirhash.c115 DPRINTK(("autofs_hash_lookup: hash = 0x%08x, name = ", name->hash));
118 for ( dhn = dh->h[(unsigned) name->hash % AUTOFS_HASH_SIZE] ; dhn ; dhn = dhn->next ) {
119 if ( name->hash == dhn->hash &&
132 DPRINTK(("autofs_hash_insert: hash = 0x%08x, name = ", ent->hash));
139 dhnp = &dh->h[(unsigned) ent->hash % AUTOFS_HASH_SIZE];
207 printk("autofs_hash_enum: found hash %08x, name", ent->hash);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/libgettextpo/
H A Dhash.c0 /* hash - implement simple hashing table with string based keys.
21 #include "hash.h"
29 /* Since this simple implementation of hash tables allows only insertion, no
85 /* Initialize a hash table. INIT_SIZE > 1 is the initial number of available
106 /* Delete a hash table's contents.
117 /* Compute a hash code for a key consisting of KEYLEN bytes starting at KEY
125 /* Compute the hash value for the given string. The algorithm
143 /* Look up a given key in the hash table.
151 unsigned long int hash; local
155 /* First hash functio
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/mthca/
H A Dmthca_mcg.c56 * If GID is found in MGM or MGM is empty, *index = *hash, *prev = -1
60 * previous entry in hash chain and *mgm holds AMGM entry.
63 * entry in hash chain and *mgm holds end of hash chain.
67 u16 *hash, int *prev, int *index)
82 err = mthca_MGID_HASH(dev, mailbox, hash, &status);
102 *hash);
104 *index = *hash;
118 if (*index != *hash) {
144 u16 hash; local
65 find_mgm(struct mthca_dev *dev, u8 *gid, struct mthca_mailbox *mgm_mailbox, u16 *hash, int *prev, int *index) argument
251 u16 hash; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna/
H A Dalbumart.c88 /* Simple, efficient hash function from Daniel J. Bernstein */
91 unsigned int hash = 5381; local
96 hash = ((hash << 5) + hash) + (*str);
99 return hash;
186 unsigned int hash; local
194 hash = DJBHash(image_data, image_size);
195 if( hash == last_hash )
219 last_hash = hash;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/
H A Dalbumart.c88 /* Simple, efficient hash function from Daniel J. Bernstein */
91 unsigned int hash = 5381; local
96 hash = ((hash << 5) + hash) + (*str);
99 return hash;
186 unsigned int hash; local
194 hash = DJBHash(image_data, image_size);
195 if( hash == last_hash )
219 last_hash = hash;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/
H A Dgetpart.pm43 my %hash;
62 $hash{$var}=$cont;
74 return %hash;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext3/
H A Ddir.c235 * These functions convert from the major/minor hash to an f_pos
238 * Currently we only use major hash numer. This is unfortunate, but
253 * the directory entry in hash order.
256 __u32 hash; member in struct:fname
337 int ext3_htree_store_dirent(struct file *dir_file, __u32 hash, argument
354 new_fn->hash = hash;
367 * If the hash and minor hash match up, then we put
370 if ((new_fn->hash
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext4/
H A Ddir.c235 * These functions convert from the major/minor hash to an f_pos
238 * Currently we only use major hash numer. This is unfortunate, but
253 * the directory entry in hash order.
256 __u32 hash; member in struct:fname
337 int ext4_htree_store_dirent(struct file *dir_file, __u32 hash, argument
354 new_fn->hash = hash;
367 * If the hash and minor hash match up, then we put
370 if ((new_fn->hash
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/txt_db/
H A Dtxt_db.h99 LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Dtxt_db.h99 LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlzwenc.c40 /** One code in hash table */
53 int tabsize; ///< Number of values in hash table
70 * @return New hash value
72 static inline int hash(int head, const int add) function
82 * Hash function calculates next hash value
83 * @param head Actual hash code
85 * @return New hash value
96 * Hash function calculates hash offset
97 * @param head Actual hash code
126 int h = hash(FFMA
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/txt_db/
H A Dtxt_db.h100 LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Dtxt_db.h100 LHASH_HASH_FN_TYPE hash, LHASH_COMP_FN_TYPE cmp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/mm/
H A Dhash_utils_64.c161 unsigned long hash, hpteg; local
171 hash = hpt_hash(va, shift);
172 hpteg = ((hash & htab_hash_mask) * HPTES_PER_GROUP);
376 /* If hash size isn't already provided by the platform, we try to
504 /* create bolted the linear mapping in the hash table */
621 * -1 - critical hash insertion error
848 unsigned long hash, index, shift, hidx, slot; local
852 hash = hpt_hash(va, shift);
855 hash = ~hash;
900 unsigned long hash, hpteg, vsid = get_kernel_vsid(vaddr); local
920 unsigned long hash, hidx, slot, vsid = get_kernel_vsid(vaddr); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/kernel/
H A Dvmlinux.lds.S10 .hash : { *(.hash) }
11 .gnu.hash : { *(.gnu.hash) }
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/base/power/
H A Dtrace.c59 * a case where we have a hash collision, and we end up not
129 * This is just the sdbm hash function with a user-supplied
148 * section instead. Generating a hash of the data gives us a
151 * likely not give totally bogus reports - if the hash matches,
176 unsigned int hash = hash_string(lineno, file, FILEHASH); local
177 if (hash != value)
179 printk(" hash matches %s:%u\n", file, lineno);
192 unsigned int hash = hash_string(DEVSEED, dev->bus_id, DEVHASH); local
193 if (hash == value) {
194 printk(" hash matche
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/bgpd/
H A Dbgp_community.h68 struct hash *community_hash ();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/affs/
H A Dnamei.c64 unsigned long hash; local
71 hash = init_name_hash();
74 hash = partial_name_hash(toupper(*name), hash);
75 qstr->hash = end_name_hash(hash);
161 int hash; local
163 hash = len = min(len, 30u);
165 hash = (hash * 1
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/config/
H A Dsymbol.c523 int hash = 0; local
535 hash += *ptr;
536 hash &= 0xff;
538 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) {
550 hash = 256;
561 symbol->next = symbol_hash[hash];
562 symbol_hash[hash] = symbol;
572 int hash = 0; local
585 hash += *ptr;
586 hash
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/engine/vendor_defns/
H A Dhw_ubsec.h79 int hash, unsigned char *data, int data_len,
86 int hash, unsigned char *data, int data_len,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/engines/vendor_defns/
H A Dhw_ubsec.h79 int hash, unsigned char *data, int data_len,
86 int hash, unsigned char *data, int data_len,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/gfs2/
H A Ddir.h46 name->hash = gfs2_disk_hash(name->name, name->len);
54 dent->de_hash = cpu_to_be32(name->hash);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/build_unix/
H A Ddb185_int.h86 u_int32_t (*hash) __P((const void *, size_t)); member in struct:__db185
110 u_int32_t /* hash function */
111 (*hash) __P((const void *, size_t)); member in struct:__anon1919

Completed in 240 milliseconds

1234567891011>>