Home
last modified time | relevance | path

Searched refs:hash_value (Results 1 – 25 of 86) sorted by relevance

1234

/openbsd/gnu/llvm/llvm/include/llvm/Analysis/
H A DIRSimilarityIdentifier.h263 llvm::hash_value(ID.Inst->getOpcode()), in hash_value()
264 llvm::hash_value(ID.Inst->getType()), in hash_value()
265 llvm::hash_value(ID.getPredicate()), in hash_value()
275 llvm::hash_value(ID.Inst->getType()), llvm::hash_value(IntrinsicID), in hash_value()
276 llvm::hash_value(*ID.CalleeName), in hash_value()
284 llvm::hash_value(ID.Inst->getType()), in hash_value()
285 llvm::hash_value(ID.Inst->getType()), llvm::hash_value(FunctionName), in hash_value()
290 llvm::hash_value(ID.Inst->getOpcode()), in hash_value()
291 llvm::hash_value(ID.Inst->getType()), in hash_value()
319 using llvm::hash_value; in getHashValue()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DHashing.h96 friend size_t hash_value(const hash_code &code) { return code.value; } in hash_value() function
112 template <typename T> hash_code hash_value(const T *ptr);
116 hash_code hash_value(const std::pair<T, U> &arg);
120 hash_code hash_value(const std::tuple<Ts...> &arg);
124 hash_code hash_value(const std::basic_string<T> &arg);
381 using ::llvm::hash_value;
382 return hash_value(value);
645 template <typename T> hash_code hash_value(const T *ptr) {
653 hash_code hash_value(const std::pair<T, U> &arg) {
664 hash_code hash_value(const std::basic_string<T> &arg) {
[all …]
H A DAPFixedPoint.h128 inline hash_code hash_value(const FixedPointSemantics &Val) { in hash_value() function
129 return hash_value(bit_cast<uint32_t>(Val)); in hash_value()
142 return hash_value(Val);
297 inline hash_code hash_value(const APFixedPoint &Val) {
311 return hash_value(Val);
/openbsd/gnu/usr.bin/perl/ext/Hash-Util/t/
H A DUtil.t596 my $h1= hash_value("foo");
597 my $h2= hash_value("bar");
598 is( $h1, hash_value("foo") );
599 is( $h2, hash_value("bar") );
602 my $h1s= hash_value("foo",$seed);
603 my $h2s= hash_value("bar",$seed);
605 is( $h1s, hash_value("foo",$seed) );
606 is( $h2s, hash_value("bar",$seed) );
610 my $h1s2= hash_value("foo",$seed);
611 my $h2s2= hash_value("bar",$seed);
[all …]
/openbsd/sys/dev/pci/
H A Dixgb_hw.c446 uint32_t hash_value; in ixgb_mc_addr_list_update() local
490 hash_value = in ixgb_mc_addr_list_update()
499 ixgb_mta_set(hw, hash_value); in ixgb_mc_addr_list_update()
519 uint32_t hash_value = 0; in ixgb_hash_mc_addr() local
530 hash_value = in ixgb_hash_mc_addr()
535 hash_value = in ixgb_hash_mc_addr()
540 hash_value = in ixgb_hash_mc_addr()
554 hash_value &= 0xFFF; in ixgb_hash_mc_addr()
555 return (hash_value); in ixgb_hash_mc_addr()
577 hash_reg = (hash_value >> 5) & 0x7F; in ixgb_mta_set()
[all …]
H A Digc_mac.c203 uint32_t hash_value, hash_mask; in igc_hash_mc_addr_generic() local
257 hash_value = hash_mask & (((mc_addr[4] >> (8 - bit_shift)) | in igc_hash_mc_addr_generic()
260 return hash_value; in igc_hash_mc_addr_generic()
276 uint32_t hash_value, hash_bit, hash_reg; in igc_update_mc_addr_list_generic() local
286 hash_value = igc_hash_mc_addr_generic(hw, mc_addr_list); in igc_update_mc_addr_list_generic()
288 hash_reg = (hash_value >> 5) & (hw->mac.mta_reg_count - 1); in igc_update_mc_addr_list_generic()
289 hash_bit = hash_value & 0x1F; in igc_update_mc_addr_list_generic()
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h26 friend hash_code hash_value(const Vector &);
100 inline hash_code hash_value(const Vector &V) { in hash_value() function
123 friend hash_code hash_value(const Matrix &);
237 inline hash_code hash_value(const Matrix &M) { in hash_value() function
267 inline hash_code hash_value(const MDVector<Metadata> &V) { in hash_value() function
268 return hash_value(static_cast<const Vector&>(V)); in hash_value()
284 inline hash_code hash_value(const MDMatrix<Metadata> &M) { in hash_value() function
285 return hash_value(static_cast<const Matrix&>(M)); in hash_value()
/openbsd/gnu/llvm/lldb/examples/synthetic/
H A Dunordered_multi.py105 hash_value = node.GetChildMemberWithName(
107 self.elements_cache.append((value, hash_value))
116 value, hash_value = self.elements_cache[index]
119 (index, hash_value), value.GetData(), value.GetType())
/openbsd/gnu/llvm/llvm/include/llvm/MC/
H A DMCRegister.h25 friend hash_code hash_value(const MCRegister &);
111 inline hash_code hash_value(const MCRegister &Reg) {
112 return hash_value(Reg.id());
/openbsd/gnu/llvm/clang/lib/Basic/
H A DSanitizers.cpp56 llvm::hash_code SanitizerMask::hash_value() const { in hash_value() function in SanitizerMask
68 llvm::hash_code hash_value(const clang::SanitizerMask &Arg) { in hash_value() function
69 return Arg.hash_value(); in hash_value()
/openbsd/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DSCCPSolver.h63 friend hash_code hash_value(const ArgInfo &A) { in hash_value() function
64 return hash_combine(hash_value(A.Formal), hash_value(A.Actual)); in hash_value()
/openbsd/gnu/gcc/libcpp/
H A Dsymtab.c119 if (node->hash_value == hash in ht_lookup_with_hash()
142 if (node->hash_value == hash in ht_lookup_with_hash()
162 node->hash_value = hash; in ht_lookup_with_hash()
195 hash = (*p)->hash_value; in ht_expand()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DDirectoryEntry.h62 friend llvm::hash_code hash_value(DirectoryEntryRef Ref) { in hash_value() function
63 return llvm::hash_value(&Ref.getDirEntry()); in hash_value()
212 return hash_value(Val);
H A DFileEntry.h105 friend llvm::hash_code hash_value(FileEntryRef Ref) { in hash_value() function
106 return llvm::hash_value(&Ref.getFileEntry()); in hash_value()
251 return hash_value(Val);
H A DSanitizers.h74 llvm::hash_code hash_value() const;
127 llvm::hash_code hash_value(const clang::SanitizerMask &Arg);
/openbsd/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DWasmTraits.h34 uintptr_t H = hash_value(Sig.State);
73 unsigned Hash = hash_value(Limits.Flags);
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dhashtable.c144 if (node->hash_value == hash && HT_LEN (node) == len
165 node->hash_value = hash;
198 hash = (*p)->hash_value;
H A Dhashtable.h30 unsigned int hash_value; member
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DMappedHash.h211 const uint32_t hash_value = in Find() local
213 const uint32_t bucket_idx = hash_value % bucket_count; in Find()
218 if (curr_hash_value == hash_value) { in Find()
/openbsd/gnu/llvm/llvm/include/llvm/Transforms/IPO/
H A DFunctionSpecialization.h80 friend hash_code hash_value(const SpecSig &S) { in hash_value() function
81 return hash_combine(hash_value(S.Key), in hash_value()
/openbsd/gnu/llvm/clang/include/clang/Tooling/Inclusions/
H A DStandardLibrary.h120 return hash_value(H.ID);
136 return hash_value(S.ID);
/openbsd/gnu/llvm/llvm/lib/DebugInfo/CodeView/
H A DMergingTypeTableBuilder.cpp108 return insertRecordAs(hash_value(Record), Record); in insertRecordBytes()
132 LocallyHashedType WeakHash{hash_value(Record), Record}; in replaceType()
/openbsd/gnu/llvm/clang/include/clang/Lex/
H A DHeaderSearchOptions.h262 inline llvm::hash_code hash_value(const HeaderSearchOptions::Entry &E) { in hash_value() function
273 hash_value(const HeaderSearchOptions::SystemHeaderPrefix &SHP) { in hash_value() function
/openbsd/gnu/gcc/libcpp/include/
H A Dsymtab.h31 unsigned int hash_value; member
/openbsd/gnu/llvm/llvm/include/llvm/DWP/
H A DDWPStringPool.h22 return (unsigned)hash_value(StringRef(Val)); in getHashValue()

1234