/openbsd/gnu/llvm/llvm/include/llvm/ADT/ |
H A D | DenseMapInfo.h | 83 static unsigned getHashValue(const T *PtrVal) { 140 static unsigned getHashValue(const unsigned long& Val) { 154 static unsigned getHashValue(const unsigned long long& Val) { 191 static unsigned getHashValue(const long& Val) { 205 static unsigned getHashValue(const long long& Val) { 232 static unsigned getHashValue(const Pair& PairVal) { 260 DenseMapInfo<EltType>::getHashValue(std::get<I>(values)), 269 static unsigned getHashValue(const std::tuple<Ts...> &values) { 307 static unsigned getHashValue(const Variant &Val) { 314 DenseMapInfo<size_t>::getHashValue(Val.index()), [all …]
|
H A D | CachedHashString.h | 37 : CachedHashStringRef(S, DenseMapInfo<StringRef>::getHashValue(S)) {} in CachedHashStringRef() 57 static unsigned getHashValue(const CachedHashStringRef &S) { 102 : CachedHashString(S, DenseMapInfo<StringRef>::getHashValue(S)) {} 162 static unsigned getHashValue(const CachedHashString &S) {
|
H A D | PointerEmbeddedInt.h | 110 static unsigned getHashValue(const T &Arg) { 111 return IntInfo::getHashValue(Arg);
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_dense_map_info.h | 95 static constexpr unsigned getHashValue(const T *PtrVal) { 121 static constexpr unsigned getHashValue(const unsigned char &Val) { 136 static constexpr unsigned getHashValue(const unsigned short &Val) { 151 static constexpr unsigned getHashValue(const unsigned &Val) { 166 static constexpr unsigned getHashValue(const unsigned long &Val) { 182 static constexpr unsigned getHashValue(const unsigned long long &Val) { 208 static constexpr unsigned getHashValue(const int &Val) { 226 static constexpr unsigned getHashValue(const long &Val) { 243 static constexpr unsigned getHashValue(const long long &Val) { 269 static constexpr unsigned getHashValue(const Pair &PairVal) { [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/BinaryFormat/ |
H A D | WasmTraits.h | 33 static unsigned getHashValue(const wasm::WasmSignature &Sig) { 55 static unsigned getHashValue(const wasm::WasmGlobalType &GlobalType) { 72 static unsigned getHashValue(const wasm::WasmLimits &Limits) { 96 static unsigned getHashValue(const wasm::WasmTableType &TableType) { 99 DenseMapInfo<wasm::WasmLimits, void>::getHashValue(TableType.Limits));
|
/openbsd/gnu/llvm/llvm/lib/IR/ |
H A D | LLVMContextImpl.h | 126 return getHashValue(KeyTy(ST)); in getHashValue() 179 return getHashValue(KeyTy(FT)); in getHashValue() 228 return getHashValue(KeyTy(FT)); in getHashValue() 336 unsigned getHashValue() const { 399 unsigned getHashValue() const { 429 unsigned getHashValue() const { 485 unsigned getHashValue() const { 567 unsigned getHashValue() const { 687 unsigned getHashValue() const { 736 unsigned getHashValue() const { [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/Transforms/Scalar/ |
H A D | GVNExpression.h | 96 HashVal = getHashValue(); in getComputedHash() 113 virtual hash_code getHashValue() const { return getOpcode(); } in getHashValue() function 222 hash_code getHashValue() const override { in getHashValue() function 285 hash_code getHashValue() const override { in getHashValue() function 462 hash_code getHashValue() const override { in getHashValue() function 528 hash_code getHashValue() const override { in getHashValue() function 574 hash_code getHashValue() const override { in getHashValue() function 575 return hash_combine(this->Expression::getHashValue(), in getHashValue() 611 hash_code getHashValue() const override { in getHashValue() function 612 return hash_combine(this->Expression::getHashValue(), in getHashValue() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/PBQP/ |
H A D | CostAllocator.h | 57 static unsigned getHashValue(const ValueKeyT &C) { in getHashValue() function 61 static unsigned getHashValue(PoolEntry *P) { in getHashValue() function 62 return getHashValue(P->getValue()); in getHashValue() 65 static unsigned getHashValue(const PoolEntry *P) { in getHashValue() function 66 return getHashValue(P->getValue()); in getHashValue()
|
/openbsd/gnu/llvm/clang/lib/CodeGen/ |
H A D | CodeGenTBAA.h | 239 static unsigned getHashValue(const clang::CodeGen::TBAAAccessInfo &Val) { 241 return DenseMapInfo<unsigned>::getHashValue(KindValue) ^ 242 DenseMapInfo<MDNode *>::getHashValue(Val.BaseType) ^ 243 DenseMapInfo<MDNode *>::getHashValue(Val.AccessType) ^ 244 DenseMapInfo<uint64_t>::getHashValue(Val.Offset) ^ 245 DenseMapInfo<uint64_t>::getHashValue(Val.Size);
|
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/GSYM/ |
H A D | FileEntry.h | 56 static unsigned getHashValue(const gsym::FileEntry &Val) { 57 return llvm::hash_combine(DenseMapInfo<uint32_t>::getHashValue(Val.Dir), 58 DenseMapInfo<uint32_t>::getHashValue(Val.Base));
|
/openbsd/gnu/llvm/llvm/include/llvm/Analysis/ |
H A D | MemoryLocation.h | 326 static unsigned getHashValue(const LocationSize &Val) { 327 return DenseMapInfo<uint64_t>::getHashValue(Val.toRaw()); 343 static unsigned getHashValue(const MemoryLocation &Val) { 344 return DenseMapInfo<const Value *>::getHashValue(Val.Ptr) ^ 345 DenseMapInfo<LocationSize>::getHashValue(Val.Size) ^ 346 DenseMapInfo<AAMDNodes>::getHashValue(Val.AATags);
|
/openbsd/gnu/llvm/llvm/lib/Target/CSKY/MCTargetDesc/ |
H A D | CSKYTargetStreamer.h | 84 static unsigned getHashValue(const CSKYTargetStreamer::SymbolIndex &V) { 85 return hash_combine(DenseMapInfo<const MCSymbol *>::getHashValue(V.sym), 86 DenseMapInfo<int>::getHashValue(V.kind));
|
/openbsd/gnu/llvm/clang/include/clang/Basic/ |
H A D | SourceLocation.h | 55 unsigned getHashValue() const { return static_cast<unsigned>(ID); } in getHashValue() function 180 unsigned getHashValue() const; 483 static unsigned getHashValue(clang::FileID S) { 484 return S.getHashValue(); 506 static unsigned getHashValue(clang::SourceLocation Loc) { 507 return Loc.getHashValue();
|
/openbsd/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
H A D | MemoryFlags.h | 200 static unsigned getHashValue(const orc::MemProt &Val) { 202 return DenseMapInfo<UT>::getHashValue(static_cast<UT>(Val)); 216 static unsigned getHashValue(const orc::AllocGroup &Val) { 217 return DenseMapInfo<orc::AllocGroup::underlying_type>::getHashValue(Val.Id);
|
/openbsd/gnu/llvm/clang/include/clang/Sema/ |
H A D | Weak.h | 45 static unsigned getHashValue(const WeakInfo &W) { in getHashValue() function 46 return DenseMapInfo::getHashValue(W.getAlias()); in getHashValue()
|
/openbsd/gnu/llvm/llvm/include/llvm/IR/ |
H A D | ValueHandle.h | 188 static unsigned getHashValue(const WeakVH &Val) { 189 return DenseMapInfo<Value *>::getHashValue(Val); 539 static unsigned getHashValue(const PoisoningVH<T> &Val) { 540 return DenseMapInfo<Value *>::getHashValue(Val.getRawValPtr()); 551 static unsigned getHashValue(const T *Val) { 552 return DenseMapInfo<Value *>::getHashValue(Val);
|
H A D | Dominators.h | 127 static unsigned getHashValue(const BasicBlockEdge *V); 137 static unsigned getHashValue(const BasicBlockEdge &Edge) { 138 return hash_combine(BBInfo::getHashValue(Edge.getStart()), 139 BBInfo::getHashValue(Edge.getEnd()));
|
/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | TypeOrdering.h | 46 static unsigned getHashValue(clang::QualType Val) { 66 static unsigned getHashValue(clang::CanQualType Val) {
|
H A D | BaseSubobject.h | 70 static unsigned getHashValue(const clang::BaseSubobject &Base) { 73 return DenseMapInfo<PairTy>::getHashValue(PairTy(Base.getBase(),
|
/openbsd/gnu/llvm/llvm/tools/dsymutil/ |
H A D | BinaryHolder.h | 159 getHashValue(const dsymutil::BinaryHolder::ArchiveEntry::KeyTy &K) { 160 return hash_combine(DenseMapInfo<StringRef>::getHashValue(K.Filename), 161 DenseMapInfo<unsigned>::getHashValue(
|
/openbsd/gnu/llvm/llvm/include/llvm/Linker/ |
H A D | IRMover.h | 38 static unsigned getHashValue(const KeyTy &Key); 39 static unsigned getHashValue(const StructType *ST);
|
/openbsd/gnu/llvm/llvm/include/llvm/MC/ |
H A D | MCRegister.h | 103 static unsigned getHashValue(const MCRegister &Val) { 104 return DenseMapInfo<unsigned>::getHashValue(Val.id());
|
/openbsd/gnu/llvm/llvm/tools/llvm-reduce/deltas/ |
H A D | Delta.h | 71 static unsigned getHashValue(const Chunk Val) { 73 return DenseMapInfo<std::pair<int, int>>::getHashValue(PairVal);
|
/openbsd/gnu/llvm/llvm/lib/Target/SPIRV/ |
H A D | SPIRVDuplicatesTracker.h | 103 Hash = (DenseMapInfo<Type *>().getHashValue(SampledTy) & 0xffff) ^ in SpecialTypeDescriptor() 173 static unsigned getHashValue(SPIRV::SpecialTypeDescriptor Val) { 178 return getHashValue(LHS) == getHashValue(RHS);
|
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/ |
H A D | Register.h | 155 static unsigned getHashValue(const Register &Val) { 156 return DenseMapInfo<unsigned>::getHashValue(Val.id());
|