Searched defs:hash (Results 1 - 4 of 4) sorted by relevance

/scripts/basic/
H A Dfixdep.c144 unsigned int hash; member in struct:item
153 /* fnv32 hash */
154 unsigned int i, hash = 2166136261U; local
157 hash = (hash ^ str[i]) * 0x01000193;
158 return hash;
164 static int is_defined_config(const char *name, int len, unsigned int hash) argument
168 for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) {
169 if (aux->hash == hash
179 define_config(const char *name, int len, unsigned int hash) argument
216 unsigned int hash = strhash(m, slen); local
[all...]
/scripts/mod/
H A Dsumversion.c41 uint32_t hash[MD4_HASH_WORDS]; member in struct:md4_ctx
88 static void md4_transform(uint32_t *hash, uint32_t const *in) argument
92 a = hash[0];
93 b = hash[1];
94 c = hash[2];
95 d = hash[3];
148 hash[0] += a;
149 hash[1] += b;
150 hash[2] += c;
151 hash[
[all...]
H A Dmodpost.c147 /* A hash of all exported symbols,
168 /* This is based on the hash agorithm from gdbm, via tdb */
171 unsigned value; /* Used to compute the hash value. */
182 * Allocate a new symbols for use in the hash of exported symbols or
197 /* For the hash of exported symbols */
201 unsigned int hash; local
204 hash = tdb_hash(name) % SYMBOL_HASH_SIZE;
205 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]);
/scripts/kconfig/
H A Dsymbol.c772 /* fnv32 hash */
773 unsigned hash = 2166136261U; local
775 hash = (hash ^ *s) * 0x01000193;
776 return hash;
783 int hash; local
793 hash = strhash(name) % SYMBOL_HASHSIZE;
795 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) {
805 hash = 0;
814 symbol->next = symbol_hash[hash];
823 int hash = 0; local
[all...]

Completed in 87 milliseconds