Searched refs:hash (Results 1 – 5 of 5) sorted by relevance
164 unsigned int hash; member174 unsigned int i, hash = 2166136261U; in strhash() local177 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() local221 if (is_defined_config(m, slen, hash)) in use_config()[all …]
120 my $hash = $#octets;122 $hash += $_ * 33;125 $hash = ($hash >> 24) ^ ($hash >> 16) ^ ($hash >> 8) ^ ($hash);127 push @hash_values, $hash & 0xff;
862 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};
161 # Usage: ldflags += $(call cc-ldoption, -Wl$(comma)--hash-style=both)
799 unsigned hash = 2166136261U; in strhash() local801 hash = (hash ^ *s) * 0x01000193; in strhash()802 return hash; in strhash()809 int hash; in sym_lookup() local819 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() local861 hash = strhash(name) % SYMBOL_HASHSIZE; in sym_find()[all …]
Completed in 12 milliseconds