Searched refs:for_each (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/lld/include/lld/Common/
H A DThreads.h33 // instead of std::for_each (or a plain for loop). Because tasks are
70 for_each(llvm::parallel::par, std::begin(range), std::end(range), fn);
72 for_each(llvm::parallel::seq, std::begin(range), std::end(range), fn);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DParallel.h140 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); });
143 std::for_each(Begin, End, Fn);
183 void for_each(Policy policy, IterTy Begin, IterTy End, FuncTy Fn) { function in namespace:llvm::parallel
186 std::for_each(Begin, End, Fn);
208 void for_each(parallel_execution_policy policy, IterTy Begin, IterTy End, function in namespace:llvm::parallel
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineOutliner.h150 std::for_each(MBB->rbegin(), (MachineBasicBlock::reverse_iterator)front(),
156 std::for_each(front(), std::next(back()),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSplitModule.cpp147 llvm::for_each(M->functions(), recordGVSet);
148 llvm::for_each(M->globals(), recordGVSet);
149 llvm::for_each(M->aliases(), recordGVSet);
/freebsd-12-stable/contrib/libstdc++/include/backward/
H A Dalgo.h69 using std::for_each;
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DSarifDiagnostics.cpp92 std::for_each(++Iter, End, [&Ret](StringRef Component) {
337 llvm::for_each(Diags, [&](const PathDiagnostic *D) {
365 llvm::for_each(Diags, [&](const PathDiagnostic *D) {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedTemplate.h210 std::for_each(
/freebsd-12-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp493 llvm::for_each(MergedModule->functions(), externalize);
494 llvm::for_each(MergedModule->globals(), externalize);
495 llvm::for_each(MergedModule->aliases(), externalize);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp370 std::for_each(MemInstrs.begin() + getInstrIndex(FirstStore) + 1,
372 std::for_each(MemInstrs.begin(), &MemInstrs[getInstrIndex(LastLoad)],
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DBasicBlock.cpp459 llvm::for_each(successors(TI), [Old, New](BasicBlock *Succ) {
H A DLegacyPassManager.cpp202 std::for_each(M.begin(), M.end(), UpdateFunctionChanges);
280 std::for_each(FunctionToInstrCount.keys().begin(),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.cpp57 std::for_each(Macros.begin(), Macros.end(),
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOutliner.cpp1272 std::for_each(CallInst, std::next(EndIt), CopyDefsAndUpdateCalls);
1281 std::for_each(Mapper.UnsignedVec.begin() + C.getStartIdx(),
H A DBranchFolding.cpp172 std::for_each(MBB->begin(), MBB->end(), [MF](const MachineInstr &MI) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp475 llvm::for_each(Defs, AnalyzeDef);
487 llvm::for_each(Defs, AnalyzeDef);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonVectorLoopCarriedReuse.cpp678 llvm::for_each(Dependences, std::default_delete<DepChain>());
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp1514 llvm::for_each(opts::diadump::InputFilenames, dumpDia);
1552 llvm::for_each(opts::pretty::InputFilenames, dumpPretty);
1554 llvm::for_each(opts::dump::InputFilenames, dumpRaw);
1556 llvm::for_each(opts::bytes::InputFilenames, dumpBytes);
/freebsd-12-stable/contrib/googletest/googletest/src/
H A Dgtest-internal-inl.h293 std::for_each(c.begin(), c.end(), functor);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSTLExtras.h134 // for_each(V.begin(), B.end(), deleter<Interval>);
1172 /// Provide wrappers to std::for_each which take ranges instead of having to
1175 UnaryPredicate for_each(R &&Range, UnaryPredicate P) { function in namespace:llvm
1176 return std::for_each(adl_begin(Range), adl_end(Range), P);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopInfoImpl.h311 std::for_each(GraphTraits<Inverse<BlockT *>>::child_begin(BB),
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp558 llvm::for_each(opts::InputFilenames, dumpInput);
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp888 llvm::for_each(InputFilenames, printFileSectionSizes);
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenSchedule.cpp155 std::for_each(Range1.first, Range1.second, HandleNonGeneric);
156 std::for_each(Range2.first, Range2.second, HandleNonGeneric);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaPseudoObject.cpp1457 llvm::for_each(CallArgs, [this](Expr *&Arg) { Arg = capture(Arg); });
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2380 llvm::for_each(Resolver->args(),

Completed in 192 milliseconds

12