Home
last modified time | relevance | path

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

/scripts/
Dget_dvb_firmware52 my $hash = "53970ec17a538945a6d8cb608a7b3899";
60 verify("$tmpdir/software/OEM/HE/App/boot/SC_MAIN.MC", $hash);
70 my $hash = "237938d53a7f834c05c42b894ca68ac3";
80 verify("$tmpdir/ZEnglish/sc_main.mc", $hash);
89 my $hash = "2105fd5bf37842fbcdfa4bfd58f3594a";
98 verify("$tmpdir/fwtmp", $hash);
107 my $hash = "6a7e1e2f2644b162ff0502367553c72d";
116 verify("$tmpdir/fwtmp", $hash);
125 my $hash = "1ea24dee4eea8fe971686981f34fd2e0";
134 verify("$tmpdir/fwtmp", $hash);
[all …]
Dparse-maintainers.pl154 my %hash;
157 file_input(\%hash, $input_file);
160 foreach my $key (keys %hash) {
161 if ($key =~ /$type/ || $hash{$key} =~ /$type/) {
162 $new_hash{$key} = $hash{$key};
163 delete $hash{$key};
168 alpha_output(\%hash, $output_file);
Dget_maintainer.pl842 my %hash;
885 $hash{$tvi} = $value_pd;
890 $hash{$tvi} = 0;
899 foreach my $line (sort {$hash{$b} <=> $hash{$a}} keys %hash) {
2126 my %hash;
2143 $hash{$_}++ for @lines;
2146 foreach my $line (sort {$hash{$b} <=> $hash{$a}} keys %hash) {
2147 my $sign_offs = $hash{$line};
Dextract-module-sig.pl59 my ($algo, $hash, $id_type, $name_len, $kid_len, $sig_len) = @info;
Dextract_xc3028.pl29 my ($filename, $hash) = @_;
41 …Hash of extracted file does not match (found $testhash, expected $hash!\n" if ($testhash ne $hash);
Dsign-file.c57 uint8_t hash; /* Digest algorithm [0] */ member
/scripts/basic/
Dfixdep.c167 unsigned int hash; member
177 unsigned int i, hash = 2166136261U; in strhash() local
180 hash = (hash ^ str[i]) * 0x01000193; in strhash()
181 return hash; in strhash()
187 static int is_defined_config(const char *name, int len, unsigned int hash) in is_defined_config() argument
191 for (aux = hashtab[hash % HASHSZ]; aux; aux = aux->next) { in is_defined_config()
192 if (aux->hash == hash && aux->len == len && in is_defined_config()
202 static void define_config(const char *name, int len, unsigned int hash) in define_config() argument
212 aux->hash = hash; in define_config()
213 aux->next = hashtab[hash % HASHSZ]; in define_config()
[all …]
/scripts/mod/
Dsumversion.c41 uint32_t hash[MD4_HASH_WORDS]; member
88 static void md4_transform(uint32_t *hash, uint32_t const *in) in md4_transform() argument
92 a = hash[0]; in md4_transform()
93 b = hash[1]; in md4_transform()
94 c = hash[2]; in md4_transform()
95 d = hash[3]; in md4_transform()
148 hash[0] += a; in md4_transform()
149 hash[1] += b; in md4_transform()
150 hash[2] += c; in md4_transform()
151 hash[3] += d; in md4_transform()
[all …]
Dmodpost.c219 unsigned int hash; in new_symbol() local
222 hash = tdb_hash(name) % SYMBOL_HASH_SIZE; in new_symbol()
223 new = symbolhash[hash] = alloc_symbol(name, 0, symbolhash[hash]); in new_symbol()
/scripts/kconfig/
Dsymbol.c796 unsigned hash = 2166136261U; in strhash() local
798 hash = (hash ^ *s) * 0x01000193; in strhash()
799 return hash; in strhash()
806 int hash; in sym_lookup() local
816 hash = strhash(name) % SYMBOL_HASHSIZE; in sym_lookup()
818 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_lookup()
828 hash = 0; in sym_lookup()
837 symbol->next = symbol_hash[hash]; in sym_lookup()
838 symbol_hash[hash] = symbol; in sym_lookup()
846 int hash = 0; in sym_find() local
[all …]
/scripts/gcc-plugins/
Drandomize_layout_plugin.c69 unsigned long hash = 0; in name_hash() local
72 hash = partial_name_hash(*name++, hash); in name_hash()
73 return (unsigned int)hash; in name_hash()