Home
last modified time | relevance | path

Searched refs:NumThreads (Results 1 – 23 of 23) sorted by relevance

/freebsd-13.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c746 if (Info->Threads && (Info->NumCreated < Info->NumThreads)) in AcpiDbMethodThread()
799 if (Info->NumCompleted == Info->NumThreads) in AcpiDbMethodThread()
959 UINT32 NumThreads; in AcpiDbCreateExecutionThreads() local
970 NumThreads = strtoul (NumThreadsArg, NULL, 0); in AcpiDbCreateExecutionThreads()
973 if (!NumThreads || !NumLoops) in AcpiDbCreateExecutionThreads()
976 NumThreads, NumLoops); in AcpiDbCreateExecutionThreads()
1024 AcpiGbl_DbMethodInfo.NumThreads = NumThreads; in AcpiDbCreateExecutionThreads()
1025 Size = sizeof (ACPI_THREAD_ID) * AcpiGbl_DbMethodInfo.NumThreads; in AcpiDbCreateExecutionThreads()
1083 NumThreads, NumLoops); in AcpiDbCreateExecutionThreads()
1085 for (i = 0; i < (NumThreads); i++) in AcpiDbCreateExecutionThreads()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DDwarfTransformer.h52 llvm::Error convert(uint32_t NumThreads);
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageViewOptions.h51 unsigned NumThreads; member
H A DCoverageExporterJson.cpp233 ThreadPoolStrategy S = hardware_concurrency(Options.NumThreads); in renderFiles()
234 if (Options.NumThreads == 0) { in renderFiles()
H A DCodeCoverage.cpp737 cl::opt<unsigned> NumThreads( in run() local
741 cl::aliasopt(NumThreads)); in run()
880 ViewOpts.NumThreads = NumThreads; in run()
1057 ThreadPoolStrategy S = hardware_concurrency(ViewOpts.NumThreads); in doShow()
1058 if (ViewOpts.NumThreads == 0) { in doShow()
H A DCoverageReport.cpp391 ThreadPoolStrategy S = hardware_concurrency(Options.NumThreads); in prepareFileReports()
392 if (Options.NumThreads == 0) { in prepareFileReports()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp430 Error DwarfTransformer::convert(uint32_t NumThreads) { in convert() argument
432 if (NumThreads == 1) { in convert()
453 ThreadPool pool(hardware_concurrency(NumThreads)); in convert()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp330 unsigned NumThreads, FailureMode FailMode) { in mergeInstrProfile() argument
339 if (NumThreads == 0) in mergeInstrProfile()
340 NumThreads = std::min(hardware_concurrency().compute_thread_count(), in mergeInstrProfile()
348 for (unsigned I = 0; I < NumThreads; ++I) in mergeInstrProfile()
352 if (NumThreads == 1) { in mergeInstrProfile()
356 ThreadPool Pool(hardware_concurrency(NumThreads)); in mergeInstrProfile()
362 Ctx = (Ctx + 1) % NumThreads; in mergeInstrProfile()
890 cl::opt<unsigned> NumThreads( in merge_main() local
894 cl::aliasopt(NumThreads)); in merge_main()
985 OutputFormat, OutputSparse, NumThreads, FailureMode); in merge_main()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinker.h290 void setNumThreads(unsigned NumThreads) { Options.Threads = NumThreads; } in setNumThreads() argument
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.h199 llvm::Value *NumThreads,
H A DCGOpenMPRuntime.cpp6799 llvm::Value *NumThreads = nullptr; in getNumThreads() local
6860 NumThreads = CGF.Builder.CreateIntCast(NumThreads, CGF.Int32Ty, in getNumThreads()
6872 NumThreads = CGF.Builder.CreateSelect(CondVal, NumThreads, in getNumThreads()
6875 return NumThreads; in getNumThreads()
6914 Expr *NumThreads = nullptr; in getNumThreadsExprForTargetDirective() local
6931 ThreadLimit = NumThreads; in getNumThreadsExprForTargetDirective()
7022 return NumThreads; in emitNumThreadsForTargetDirective()
7061 return NumThreads; in emitNumThreadsForTargetDirective()
7079 return NumThreads; in emitNumThreadsForTargetDirective()
7086 return NumThreads; in emitNumThreadsForTargetDirective()
[all …]
H A DCGOpenMPRuntime.h1268 llvm::Value *NumThreads,
2158 void emitNumThreadsClause(CodeGenFunction &CGF, llvm::Value *NumThreads,
H A DCGStmtOpenMP.cpp1565 llvm::Value *NumThreads = in emitCommonOMPParallelDirective() local
1569 CGF, NumThreads, NumThreadsClause->getBeginLoc()); in emitCommonOMPParallelDirective()
1705 llvm::Value *NumThreads = nullptr; in EmitOMPParallelDirective() local
1707 NumThreads = EmitScalarExpr(NumThreadsClause->getNumThreads(), in EmitOMPParallelDirective()
1753 IfCond, NumThreads, ProcBind, S.hasCancel())); in EmitOMPParallelDirective()
H A DCGOpenMPRuntimeGPU.cpp1212 llvm::Value *NumThreads, in emitNumThreadsClause() argument
1218 CGOpenMPRuntime::emitNumThreadsClause(CGF, NumThreads, Loc); in emitNumThreadsClause()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h606 Stmt *NumThreads = nullptr; variable
609 void setNumThreads(Expr *NThreads) { NumThreads = NThreads; } in setNumThreads()
621 OMPNumThreadsClause(Expr *NumThreads, Stmt *HelperNumThreads, in OMPNumThreadsClause() argument
627 NumThreads(NumThreads) { in OMPNumThreadsClause()
644 Expr *getNumThreads() const { return cast_or_null<Expr>(NumThreads); } in getNumThreads()
646 child_range children() { return child_range(&NumThreads, &NumThreads + 1); } in children()
649 return const_child_range(&NumThreads, &NumThreads + 1); in children()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h205 Value *NumThreads, omp::ProcBindKind ProcBind,
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Daclocal.h1523 UINT32 NumThreads; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp483 FinalizeCallbackTy FiniCB, Value *IfCondition, Value *NumThreads, in createParallel() argument
492 if (NumThreads) { in createParallel()
496 Builder.CreateIntCast(NumThreads, Int32, /*isSigned*/ false)}; in createParallel()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp88 STATISTIC(NumThreads, "Number of jumps threaded");
2440 ++NumThreads; in threadEdge()
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DDarwin.cpp668 unsigned NumThreads = in ConstructJob() local
670 CmdArgs.push_back(Args.MakeArgString("-threads=" + Twine(NumThreads))); in ConstructJob()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h1601 OMPClause *RebuildOMPNumThreadsClause(Expr *NumThreads, in RebuildOMPNumThreadsClause() argument
1605 return getSema().ActOnOpenMPNumThreadsClause(NumThreads, StartLoc, in RebuildOMPNumThreadsClause()
9188 ExprResult NumThreads = getDerived().TransformExpr(C->getNumThreads()); in TransformOMPNumThreadsClause() local
9189 if (NumThreads.isInvalid()) in TransformOMPNumThreadsClause()
9192 NumThreads.get(), C->getBeginLoc(), C->getLParenLoc(), C->getEndLoc()); in TransformOMPNumThreadsClause()
H A DSemaOpenMP.cpp14188 OMPClause *Sema::ActOnOpenMPNumThreadsClause(Expr *NumThreads, in ActOnOpenMPNumThreadsClause() argument
14192 Expr *ValExpr = NumThreads; in ActOnOpenMPNumThreadsClause()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10937 OMPClause *ActOnOpenMPNumThreadsClause(Expr *NumThreads,