Home
last modified time | relevance | path

Searched refs:isEqual (Results 1 – 25 of 125) sorted by relevance

12345

/netbsd/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DDenseMapInfo.h93 static bool isEqual(const char &LHS, const char &RHS) {
154 static bool isEqual(const unsigned long long& LHS,
174 static bool isEqual(const int& LHS, const int& RHS) {
191 static bool isEqual(const long& LHS, const long& RHS) {
205 static bool isEqual(const long long& LHS,
233 static bool isEqual(const Pair &LHS, const Pair &RHS) {
234 return FirstInfo::isEqual(LHS.first, RHS.first) &&
235 SecondInfo::isEqual(LHS.second, RHS.second);
283 static bool isEqual(const Tuple &lhs, const Tuple &rhs) {
308 static bool isEqual(StringRef LHS, StringRef RHS) {
[all …]
H A DCachedHashString.h57 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!");
58 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!");
61 static bool isEqual(const CachedHashStringRef &LHS,
64 DenseMapInfo<StringRef>::isEqual(LHS.val(), RHS.val());
162 assert(!isEqual(S, getEmptyKey()) && "Cannot hash the empty key!");
163 assert(!isEqual(S, getTombstoneKey()) && "Cannot hash the tombstone key!");
166 static bool isEqual(const CachedHashString &LHS,
H A DDenseMap.h130 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey)) { in clear()
131 if (!KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) { in clear()
366 if (!KeyInfoT::isEqual(P->getFirst(), EmptyKey) && in destroyAll()
367 !KeyInfoT::isEqual(P->getFirst(), TombstoneKey)) in destroyAll()
402 if (!KeyInfoT::isEqual(B->getFirst(), EmptyKey) && in moveFromOldBuckets()
403 !KeyInfoT::isEqual(B->getFirst(), TombstoneKey)) { in moveFromOldBuckets()
597 if (!KeyInfoT::isEqual(TheBucket->getFirst(), EmptyKey)) in InsertIntoBucketImpl()
622 assert(!KeyInfoT::isEqual(Val, EmptyKey) && in LookupBucketFor()
623 !KeyInfoT::isEqual(Val, TombstoneKey) && in LookupBucketFor()
991 if (!KeyInfoT::isEqual(NewB->getFirst(), EmptyKey) && in swap()
[all …]
H A DImmutableMap.h43 static inline bool isEqual(key_type_ref L, key_type_ref R) { in isEqual() function
44 return ImutContainerInfo<T>::isEqual(L,R); in isEqual()
51 return ImutContainerInfo<S>::isEqual(L,R); in isDataEqual()
118 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
298 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
H A DImmutableSet.h79 if (ImutInfo::isEqual(K,CurrentKey)) in find()
120 if (!ImutInfo::isEqual(ImutInfo::KeyOfValue(getValue()), in isElementEqual()
139 bool isEqual(const ImutAVLTree& RHS) const { in isEqual() function
165 bool isNotEqual(const ImutAVLTree& RHS) const { return !isEqual(RHS); } in isNotEqual()
551 if (ImutInfo::isEqual(K,KCurrent))
571 if (ImutInfo::isEqual(K,KCurrent)) {
932 static bool isEqual(key_type_ref LHS, key_type_ref RHS) {
958 static bool isEqual(key_type_ref LHS, key_type_ref RHS) { return LHS == RHS; }
1044 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
1145 return Root && RHS.Root ? Root->isEqual(*RHS.Root.get()) : Root == RHS.Root;
H A DImmutableList.h127 bool isEqual(const ImmutableList& L) const { return X == L.X; } in isEqual() function
129 bool operator==(const ImmutableList& L) const { return isEqual(L); }
239 static bool isEqual(ImmutableList<T> X1, ImmutableList<T> X2) {
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h70 static bool isEqual(const ValueKeyT1 &C1, const ValueKeyT2 &C2) { in isEqual() function
75 static bool isEqual(const ValueKeyT &C, PoolEntry *P) { in isEqual() function
78 return isEqual(C, P->getValue()); in isEqual()
81 static bool isEqual(PoolEntry *P1, PoolEntry *P2) { in isEqual() function
84 return isEqual(P1->getValue(), P2); in isEqual()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DItaniumCXXABI.cpp79 return llvm::DenseMapInfo<T>::isEqual( in isDenseMapKeyEmpty()
83 return llvm::DenseMapInfo<T>::isEqual( in isDenseMapKeyTombstone()
112 assert(!isEqual(Key, getEmptyKey()) && !isEqual(Key, getTombstoneKey())); in getHashValue()
115 static bool isEqual(DecompositionDeclName LHS, DecompositionDeclName RHS) { in isEqual() function
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DValueHandle.h192 static bool isEqual(const WeakVH &LHS, const WeakVH &RHS) {
193 return DenseMapInfo<Value *>::isEqual(LHS, RHS);
543 static bool isEqual(const PoisoningVH<T> &LHS, const PoisoningVH<T> &RHS) {
544 return DenseMapInfo<Value *>::isEqual(LHS.getRawValPtr(),
555 static bool isEqual(const T *LHS, const PoisoningVH<T> &RHS) {
556 return DenseMapInfo<Value *>::isEqual(LHS, RHS.getRawValPtr());
H A DAttributes.td289 def : CompatRule<"isEqual<SanitizeAddressAttr>">;
290 def : CompatRule<"isEqual<SanitizeThreadAttr>">;
291 def : CompatRule<"isEqual<SanitizeMemoryAttr>">;
292 def : CompatRule<"isEqual<SanitizeHWAddressAttr>">;
293 def : CompatRule<"isEqual<SanitizeMemTagAttr>">;
294 def : CompatRule<"isEqual<SafeStackAttr>">;
295 def : CompatRule<"isEqual<ShadowCallStackAttr>">;
296 def : CompatRule<"isEqual<UseSampleProfileAttr>">;
H A DDominators.h127 static bool isEqual(const BasicBlockEdge &LHS, const BasicBlockEdge &RHS) {
128 return BBInfo::isEqual(LHS.getStart(), RHS.getStart()) &&
129 BBInfo::isEqual(LHS.getEnd(), RHS.getEnd());
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTTypeTraits.h115 static bool isEqual(const ASTNodeKind &LHS, const ASTNodeKind &RHS) { in isEqual() function
379 static bool isEqual(const DynTypedNode &LHS, const DynTypedNode &RHS) {
382 return (ASTNodeKind::DenseMapInfo::isEqual(LHS.NodeKind, Empty) &&
383 ASTNodeKind::DenseMapInfo::isEqual(RHS.NodeKind, Empty)) ||
384 (ASTNodeKind::DenseMapInfo::isEqual(LHS.NodeKind, TombStone) &&
385 ASTNodeKind::DenseMapInfo::isEqual(RHS.NodeKind, TombStone)) ||
H A DTypeOrdering.h52 static bool isEqual(clang::QualType LHS, clang::QualType RHS) {
72 static bool isEqual(clang::CanQualType LHS, clang::CanQualType RHS) {
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
H A DWasmTraits.h43 static bool isEqual(const wasm::WasmSignature &LHS,
60 static bool isEqual(const wasm::WasmGlobalType &LHS,
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DPerfReader.h108 return LHS.Data->isEqual(RHS.Data.get()); in operator()
121 virtual bool isEqual(const PerfSample *K) const { in isEqual() function
147 bool isEqual(const PerfSample *K) const override { in isEqual() function
300 virtual bool isEqual(const ContextKey *K) const { in isEqual() function
320 bool isEqual(const ContextKey *K) const override { in isEqual() function
341 bool isEqual(const ContextKey *K) const override { in isEqual() function
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Linker/
H A DIRMover.h39 static bool isEqual(const KeyTy &LHS, const StructType *RHS);
40 static bool isEqual(const StructType *LHS, const StructType *RHS);
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCRegister.h104 static bool isEqual(const MCRegister &LHS, const MCRegister &RHS) {
105 return DenseMapInfo<unsigned>::isEqual(LHS.id(), RHS.id());
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRegister.h158 static bool isEqual(const Register &LHS, const Register &RHS) {
159 return DenseMapInfo<unsigned>::isEqual(LHS.id(), RHS.id());
/netbsd/external/gpl3/gcc.old/dist/libobjc/objc/
H A DObject.h55 - (BOOL)isEqual: (id)anObject;
/netbsd/external/gpl3/gcc/dist/libobjc/objc/
H A DObject.h55 - (BOOL)isEqual: (id)anObject;
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeHashing.h192 static bool isEqual(codeview::LocallyHashedType LHS,
212 static bool isEqual(codeview::GloballyHashedType LHS,
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DIteratorRangeChecker.cpp296 bool isEqual(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2);
313 if (isEqual(State, Pos.getOffset(), End)) { in isPastTheEnd()
361 bool isEqual(ProgramStateRef State, SymbolRef Sym1, SymbolRef Sym2) { in isEqual() function
/netbsd/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DDAGISelMatcherOpt.cpp245 while (OptionIdx != e && OptionsToMatch[OptionIdx]->isEqual(Optn)) in FactorNodes()
261 if (Optn->isEqual(ScanMatcher)) { in FactorNodes()
284 (M2->isEqual(Optn) || M2->isContradictory(Optn))) { in FactorNodes()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DBypassSlowDivision.h42 static bool isEqual(const DivRemMapKey &Val1, const DivRemMapKey &Val2) {
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DMemoryLocation.h326 static bool isEqual(const LocationSize &LHS, const LocationSize &RHS) {
345 static bool isEqual(const MemoryLocation &LHS, const MemoryLocation &RHS) {

12345