/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A D | IRSimilarityIdentifier.h | 263 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 D | Hashing.h | 96 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 D | APFixedPoint.h | 128 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 D | Util.t | 596 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 D | ixgb_hw.c | 446 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 D | igc_mac.c | 203 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 D | Math.h | 26 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 D | unordered_multi.py | 105 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 D | MCRegister.h | 25 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 D | Sanitizers.cpp | 56 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 D | SCCPSolver.h | 63 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 D | symtab.c | 119 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 D | DirectoryEntry.h | 62 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 D | FileEntry.h | 105 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 D | Sanitizers.h | 74 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 D | WasmTraits.h | 34 uintptr_t H = hash_value(Sig.State); 73 unsigned Hash = hash_value(Limits.Flags);
|
/openbsd/gnu/usr.bin/gcc/gcc/ |
H A D | hashtable.c | 144 if (node->hash_value == hash && HT_LEN (node) == len 165 node->hash_value = hash; 198 hash = (*p)->hash_value;
|
H A D | hashtable.h | 30 unsigned int hash_value; member
|
/openbsd/gnu/llvm/lldb/include/lldb/Core/ |
H A D | MappedHash.h | 211 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 D | FunctionSpecialization.h | 80 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 D | StandardLibrary.h | 120 return hash_value(H.ID); 136 return hash_value(S.ID);
|
/openbsd/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
H A D | MergingTypeTableBuilder.cpp | 108 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 D | HeaderSearchOptions.h | 262 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 D | symtab.h | 31 unsigned int hash_value; member
|
/openbsd/gnu/llvm/llvm/include/llvm/DWP/ |
H A D | DWPStringPool.h | 22 return (unsigned)hash_value(StringRef(Val)); in getHashValue()
|