Home
last modified time | relevance | path

Searched refs:hash (Results 1 – 5 of 5) sorted by relevance

/scripts/basic/
A Dfixdep.c164 unsigned int hash; member
174 unsigned int i, hash = 2166136261U; in strhash() local
177 hash = (hash ^ str[i]) * 0x01000193; in strhash()
178 return hash; in strhash()
189 if (aux->hash == hash && aux->len == len && in is_defined_config()
209 aux->hash = hash; in define_config()
210 aux->next = hashtab[hash % HASHSZ]; in define_config()
211 hashtab[hash % HASHSZ] = aux; in define_config()
219 unsigned int hash = strhash(m, slen); in use_config() local
221 if (is_defined_config(m, slen, hash)) in use_config()
[all …]
/scripts/
A Dbuild_OID_registry120 my $hash = $#octets;
122 $hash += $_ * 33;
125 $hash = ($hash >> 24) ^ ($hash >> 16) ^ ($hash >> 8) ^ ($hash);
127 push @hash_values, $hash & 0xff;
A Dget_maintainer.pl862 my %hash;
905 $hash{$tvi} = $value_pd;
910 $hash{$tvi} = 0;
919 foreach my $line (sort {$hash{$b} <=> $hash{$a}} keys %hash) {
2160 my %hash;
2177 $hash{$_}++ for @lines;
2180 foreach my $line (sort {$hash{$b} <=> $hash{$a}} keys %hash) {
2181 my $sign_offs = $hash{$line};
A DKbuild.include161 # Usage: ldflags += $(call cc-ldoption, -Wl$(comma)--hash-style=both)
/scripts/kconfig/
A Dsymbol.c799 unsigned hash = 2166136261U; in strhash() local
801 hash = (hash ^ *s) * 0x01000193; in strhash()
802 return hash; in strhash()
809 int hash; in sym_lookup() local
819 hash = strhash(name) % SYMBOL_HASHSIZE; in sym_lookup()
831 hash = 0; in sym_lookup()
840 symbol->next = symbol_hash[hash]; in sym_lookup()
841 symbol_hash[hash] = symbol; in sym_lookup()
849 int hash = 0; in sym_find() local
861 hash = strhash(name) % SYMBOL_HASHSIZE; in sym_find()
[all …]

Completed in 12 milliseconds