Home
last modified time | relevance | path

Searched refs:KeyTy (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/compiler-rt/lib/esan/
H A Desan_hashtable.h53 typename HashFuncTy = DefaultHash<KeyTy>,
54 typename EqualFuncTy = DefaultEqual<KeyTy> >
63 bool add(const KeyTy &Key, const DataTy &Payload);
64 bool remove(const KeyTy &Key);
75 KeyTy Key;
83 KeyTy Key;
176 const KeyTy &Key, DataTy &Payload) { in lookup()
220 const KeyTy &Key, const DataTy &Payload) { in add()
252 const KeyTy &Key) { in remove()
314 typename HashTable<KeyTy, DataTy, ExternalLock, HashFuncTy,
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Linker/
H A DIRMover.h28 struct KeyTy { struct
31 KeyTy(ArrayRef<Type *> E, bool P);
32 KeyTy(const StructType *ST);
33 bool operator==(const KeyTy &that) const;
34 bool operator!=(const KeyTy &that) const;
38 static unsigned getHashValue(const KeyTy &Key);
40 static bool isEqual(const KeyTy &LHS, const StructType *RHS);
/freebsd-12.1/contrib/llvm/lib/IR/
H A DLLVMContextImpl.h98 struct KeyTy { struct
105 KeyTy(const StructType *ST) in KeyTy() argument
135 return getHashValue(KeyTy(ST)); in getHashValue()
141 return LHS == KeyTy(RHS); in isEqual()
150 struct KeyTy { struct
157 KeyTy(const FunctionType *FT) in KeyTy() function
191 return getHashValue(KeyTy(FT)); in getHashValue()
197 return LHS == KeyTy(RHS); in isEqual()
249 using KeyTy = MDNodeKeyImpl<NodeTy>; member
1114 using KeyTy = MDNodeKeyImpl<NodeTy>;
[all …]
H A DMetadataImpl.h24 const typename InfoT::KeyTy &Key) { in getUniqued()
H A DDebugInfoMetadata.cpp58 DILocationInfo::KeyTy(Line, Column, Scope, in getImpl()
261 GenericDINodeInfo::KeyTy Key(Tag, Header, DwarfOps); in getImpl()
280 setHash(GenericDINodeInfo::KeyTy::calculateHash(this)); in recalculateHash()
289 CLASS##Info::KeyTy(UNWRAP_ARGS(ARGS)))) \
H A DType.cpp300 const FunctionTypeKeyInfo::KeyTy Key(ReturnType, Params, isVarArg); in get()
345 const AnonStructTypeKeyInfo::KeyTy Key(ETypes, isPacked); in get()
H A DMetadata.cpp687 setHash(MDTupleInfo::KeyTy::calculateHash(this)); in recalculateHash()
817 MDTupleInfo::KeyTy Key(MDs); in getImpl()
/freebsd-12.1/contrib/llvm/lib/Linker/
H A DIRMover.cpp1388 IRMover::StructTypeKeyInfo::KeyTy::KeyTy(ArrayRef<Type *> E, bool P) in KeyTy() function in IRMover::StructTypeKeyInfo::KeyTy
1391 IRMover::StructTypeKeyInfo::KeyTy::KeyTy(const StructType *ST) in KeyTy() function in IRMover::StructTypeKeyInfo::KeyTy
1394 bool IRMover::StructTypeKeyInfo::KeyTy::operator==(const KeyTy &That) const { in operator ==()
1398 bool IRMover::StructTypeKeyInfo::KeyTy::operator!=(const KeyTy &That) const { in operator !=()
1410 unsigned IRMover::StructTypeKeyInfo::getHashValue(const KeyTy &Key) { in getHashValue()
1416 return getHashValue(KeyTy(ST)); in getHashValue()
1419 bool IRMover::StructTypeKeyInfo::isEqual(const KeyTy &LHS, in isEqual()
1423 return LHS == KeyTy(RHS); in isEqual()
1430 return KeyTy(LHS) == KeyTy(RHS); in isEqual()
1454 IRMover::StructTypeKeyInfo::KeyTy Key(ETypes, IsPacked); in findNonOpaque()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp98 template <typename KeyTy>
100 RemoveFromReverseMap(DenseMap<Instruction *, SmallPtrSet<KeyTy, 4>> &ReverseMap, in RemoveFromReverseMap() argument
101 Instruction *Inst, KeyTy Val) { in RemoveFromReverseMap()
102 typename DenseMap<Instruction *, SmallPtrSet<KeyTy, 4>>::iterator InstIt = in RemoveFromReverseMap()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp1621 template <class KeyTy>
1622 static APValue &createTemporary(const KeyTy *Key, bool IsLifetimeExtended, in createTemporary()