Home
last modified time | relevance | path

Searched refs:any_of (Results 1 – 25 of 371) sorted by relevance

12345678910>>...15

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DVMRange.cpp26 return llvm::any_of(coll, in ContainsValue()
32 return llvm::any_of(coll, in ContainsRange()
H A DTildeExpressionResolver.cpp36 assert(!llvm::any_of(Expr, [](char c) { return path::is_separator(c); })); in ResolveExact()
46 assert(!llvm::any_of(Expr, [](char c) { return path::is_separator(c); })); in ResolvePartial()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMultiHazardRecognizer.cpp29 return llvm::any_of(Recognizers, in atIssueLimit()
76 return llvm::any_of(Recognizers, SPA); in ShouldPreferAnother()
H A DCFIFixup.cpp96 return llvm::any_of(llvm::reverse(MBB), [](const auto &MI) { in containsEpilogue()
H A DBasicBlockSectionsProfileReader.cpp166 bool FunctionFound = any_of(Values, [&](StringRef Alias) { in ReadV1Profile()
313 bool FunctionFound = any_of(Aliases, [&](StringRef Alias) { in ReadV0Profile()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DRISCVTargetDefEmitter.cpp156 bool HasExperimentalProfiles = any_of(Profiles, [&](auto &Rec) { in emitRISCVProfiles()
177 bool FastScalarUnalignedAccess = any_of(Features, [&](auto &Feature) { in emitRISCVProcs()
181 bool FastVectorUnalignedAccess = any_of(Features, [&](auto &Feature) { in emitRISCVProcs()
H A DX86FoldTablesEmitter.cpp54 return any_of(ExplicitAlign, [Inst](const char *InstStr) { in isExplicitAlign()
60 return any_of(ExplicitUnalign, [Inst](const char *InstStr) { in isExplicitUnalign()
236 return any_of(Inst->Operands, [](const CGIOperandList::OperandInfo &OpIn) { in hasRSTRegClass()
243 return any_of(Inst->Operands, [](const CGIOperandList::OperandInfo &OpIn) { in hasPtrTailcallRegClass()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOSLog.h128 return llvm::any_of( in hasPrivateItems()
133 return llvm::any_of(Items, [](const OSLogBufferItem &Item) { in hasNonScalarOrMask()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugSuppression.cpp31 return llvm::any_of(S->getAttrs(), [](const Attr *A) { in hasSuppression()
187 return llvm::any_of(SuppressionRanges, in isSuppressed()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVFeatures.td234 AssemblerPredicate<(any_of FeatureStdExtA, FeatureStdExtZaamo),
266 AssemblerPredicate<(any_of FeatureStdExtA, FeatureStdExtZalrsc),
329 AssemblerPredicate<(any_of FeatureStdExtZfh, FeatureStdExtZfhmin,
402 AssemblerPredicate<(any_of FeatureStdExtC, FeatureStdExtZca),
422 AssemblerPredicate<(any_of FeatureStdExtC, FeatureStdExtZcd),
455 AssemblerPredicate<(any_of FeatureStdExtC, FeatureStdExtZcf,
533 AssemblerPredicate<(any_of FeatureStdExtZbb, FeatureStdExtZbkb),
552 AssemblerPredicate<(any_of FeatureStdExtZbc, FeatureStdExtZbkc),
579 AssemblerPredicate<(any_of FeatureStdExtZknd, FeatureStdExtZkne),
726 AssemblerPredicate<(any_of FeatureStdExtZfh, FeatureStdExtZvfh),
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonRegisterInfo.cpp388 return !any_of(LIS.getInterval(DstReg), HasCall) && in shouldCoalesce()
389 !any_of(LIS.getInterval(SrcReg), HasCall); in shouldCoalesce()
397 return any_of(LIS.getInterval(LargeReg), HasCall) || in shouldCoalesce()
398 !any_of(LIS.getInterval(SmallReg), HasCall); in shouldCoalesce()
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dany_of.h23 any_of(_InputIterator __first, _InputIterator __last, _Predicate __pred) { in any_of() function
H A Dranges_any_of.h64 inline constexpr auto any_of = __any_of::__fn{};
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DPassInstrumentation.cpp42 return any_of(Specials, in isSpecialPass()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanSLP.cpp96 if (any_of(Operands, [this](VPValue *Op) { in areVectorizable()
103 if (any_of(Operands, in areVectorizable()
193 if (any_of(Values, [Opcode](VPValue *V) { in getOpcode()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DLocateToolCompilationDatabase.cpp51 if (llvm::any_of(Driver, in addLocation()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DPHITransAddr.h65 return any_of(InstInputs, [BB](const auto &InstInput) { in needsPHITranslationFromBlock()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DCalledOnceCheck.cpp477 return llvm::any_of(MentionedNames, [](llvm::StringRef ConditionName) { in mentionsAnyOfConventionalNames()
478 return llvm::any_of( in mentionsAnyOfConventionalNames()
976 return llvm::any_of(CONVENTIONAL_SUFFIXES, [Name](llvm::StringRef Suffix) { in hasConventionalSuffix()
1195 llvm::any_of(KNOWN_CALLED_ONCE_PARAMETERS, in shouldBlockArgumentBeCalledOnce()
1292 return llvm::any_of(States, [Index](const State &StateForOneBB) { in hasEverEscaped()
1470 return llvm::any_of( in anySuccessorHasStatus()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasSetTracker.cpp56 if (!any_of(MemoryLocs, [&](const MemoryLocation &MemLoc) { in mergeSetIn()
57 return any_of(AS.MemoryLocs, [&](const MemoryLocation &ASMemLoc) { in mergeSetIn()
117 if (!any_of(MemoryLocs, [&](const MemoryLocation &ASMemLoc) { in addMemoryLocation()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp189 return any_of(Other.Conditions, [&](const ControlCondition &OtherC) { in isEquivalent()
381 if (llvm::any_of(InstsToCheck, [](Instruction *I) { in isSafeToMoveBefore()
400 if (llvm::any_of(InstsToCheck, [&DI, &I](Instruction *CurInst) { in isSafeToMoveBefore()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/GISel/
H A DPPCRegisterBankInfo.cpp178 if (any_of(MRI.use_nodbg_instructions(MI.getOperand(0).getReg()), in getInstrMapping()
286 return any_of(MI.explicit_uses(), [&](const MachineOperand &Op) { in hasFPConstraints()
/freebsd/contrib/llvm-project/llvm/lib/MCA/
H A DPipeline.cpp32 return any_of(Stages, [](const std::unique_ptr<Stage> &S) { in hasWorkToProcess()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPU.td1964 AssemblerPredicate<(any_of FeatureFlatBufferGlobalAtomicFaddF64Inst)>;
1968 AssemblerPredicate<(any_of FeatureAtomicFMinFMaxF32GlobalInsts)>;
1972 AssemblerPredicate<(any_of FeatureAtomicFMinFMaxF64GlobalInsts)>;
1976 AssemblerPredicate<(any_of FeatureAtomicFMinFMaxF32FlatInsts)>;
1980 AssemblerPredicate<(any_of FeatureAtomicFMinFMaxF64FlatInsts)>;
1984 AssemblerPredicate<(any_of FeatureGFX90AInsts)>;
1996 AssemblerPredicate<(any_of FeatureGFX10_3Insts, FeatureGFX940Insts)>;
1998 AssemblerPredicate<(any_of FeatureGFX940Insts, FeatureGFX11Insts)>;
2101 AssemblerPredicate<(any_of FeatureGFX10Insts, FeatureGFX940Insts)>;
2218 AssemblerPredicate<(any_of FeatureGFX10_3Insts)>;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DProcess.cpp56 if (any_of(IgnoreList, [&](StringRef S) { return fs::equivalent(S, Dir); })) in FindInEnvPath()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DBlockCoverageInference.cpp145 bool HasSuperReachablePred = llvm::any_of(Preds, [&](auto *Pred) { in findDependencies()
155 bool HasSuperReachableSucc = llvm::any_of(Succs, [&](auto *Succ) { in findDependencies()

12345678910>>...15