Searched refs:NumThreads (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c722 if (Info->Threads && (Info->NumCreated < Info->NumThreads))
775 if (Info->NumCompleted == Info->NumThreads)
935 UINT32 NumThreads; local
946 NumThreads = strtoul (NumThreadsArg, NULL, 0);
949 if (!NumThreads || !NumLoops)
952 NumThreads, NumLoops);
1000 AcpiGbl_DbMethodInfo.NumThreads = NumThreads;
1001 Size = sizeof (ACPI_THREAD_ID) * AcpiGbl_DbMethodInfo.NumThreads;
1037 AcpiDbUint32ToHexString (NumThreads, AcpiGbl_DbMethodInf
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageViewOptions.h45 unsigned NumThreads; member in struct:llvm::CoverageViewOptions
H A DCoverageExporterJson.cpp165 auto NumThreads = Options.NumThreads; local
166 if (NumThreads == 0) {
167 NumThreads = std::max(1U, std::min(llvm::heavyweight_hardware_concurrency(),
170 ThreadPool Pool(NumThreads);
H A DCoverageReport.cpp355 auto NumThreads = Options.NumThreads; local
357 // If NumThreads is not specified, auto-detect a good default.
358 if (NumThreads == 0)
359 NumThreads =
363 ThreadPool Pool(NumThreads);
H A DCodeCoverage.cpp649 cl::opt<unsigned> NumThreads(
653 cl::aliasopt(NumThreads));
780 ViewOpts.NumThreads = NumThreads;
943 auto NumThreads = ViewOpts.NumThreads; local
945 // If NumThreads is not specified, auto-detect a good default.
946 if (NumThreads == 0)
947 NumThreads =
951 if (!ViewOpts.hasOutputDirectory() || NumThreads
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp297 unsigned NumThreads, FailureMode FailMode) {
308 // If NumThreads is not specified, auto-detect a good default.
309 if (NumThreads == 0)
310 NumThreads =
315 for (unsigned I = 0; I < NumThreads; ++I)
319 if (NumThreads == 1) {
323 ThreadPool Pool(NumThreads);
325 // Load the inputs in parallel (N/NumThreads serial steps).
329 Ctx = (Ctx + 1) % NumThreads;
333 // Merge the writer contexts together (~ lg(NumThreads) seria
293 mergeInstrProfile(const WeightedFileVector &Inputs, SymbolRemapper *Remapper, StringRef OutputFilename, ProfileFormat OutputFormat, bool OutputSparse, unsigned NumThreads, FailureMode FailMode) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h160 /// \param NumThreads The evaluated 'num_threads' clause expression, if any.
168 Value *IfCondition, Value *NumThreads,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp307 Value *NumThreads, omp::ProcBindKind ProcBind, bool IsCancellable) {
315 if (NumThreads) {
319 Builder.CreateIntCast(NumThreads, Int32, /*isSigned*/ false)};
304 CreateParallel( const LocationDescription &Loc, BodyGenCallbackTy BodyGenCB, PrivatizeCallbackTy PrivCB, FinalizeCallbackTy FiniCB, Value *IfCondition, Value *NumThreads, omp::ProcBindKind ProcBind, bool IsCancellable) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.h221 /// \param NumThreads An integer value of threads.
223 llvm::Value *NumThreads,
H A DCGOpenMPRuntime.cpp3848 llvm::Value *NumThreads,
3855 CGF.Builder.CreateIntCast(NumThreads, CGF.Int32Ty, /*isSigned*/ true)};
6710 llvm::Value *NumThreads = nullptr; local
6770 NumThreads = CGF.EmitScalarExpr(NumThreadsClause->getNumThreads());
6771 NumThreads = CGF.Builder.CreateIntCast(NumThreads, CGF.Int32Ty,
6774 NumThreads = CGF.Builder.CreateSelect(
6775 CGF.Builder.CreateICmpULT(DefaultThreadLimitVal, NumThreads),
6776 DefaultThreadLimitVal, NumThreads);
6778 NumThreads
3847 emitNumThreadsClause(CodeGenFunction &CGF, llvm::Value *NumThreads, SourceLocation Loc) argument
6939 llvm::Value *NumThreads = CGF.EmitScalarExpr( local
[all...]
H A DCGOpenMPRuntime.h1165 /// \param NumThreads An integer value of threads.
1167 llvm::Value *NumThreads,
1945 /// \param NumThreads An integer value of threads.
1946 void emitNumThreadsClause(CodeGenFunction &CGF, llvm::Value *NumThreads,
H A DCGStmtOpenMP.cpp1301 llvm::Value *NumThreads = local
1305 CGF, NumThreads, NumThreadsClause->getBeginLoc());
1346 llvm::Value *NumThreads = nullptr; local
1348 NumThreads = EmitScalarExpr(NumThreadsClause->getNumThreads(),
1414 FiniCB, IfCond, NumThreads,
H A DCGOpenMPRuntimeNVPTX.cpp682 /// E.g: If NumThreads is 33, master id is 32.
683 /// If NumThreads is 64, master id is 32.
684 /// If NumThreads is 1024, master id is 992.
687 llvm::Value *NumThreads = getNVPTXNumThreads(CGF); local
692 return Bld.CreateAnd(Bld.CreateNUWSub(NumThreads, Bld.getInt32(1)),
1948 llvm::Value *NumThreads,
1954 CGOpenMPRuntime::emitNumThreadsClause(CGF, NumThreads, Loc);
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h601 Stmt *NumThreads = nullptr; member in class:clang::OMPNumThreadsClause
604 void setNumThreads(Expr *NThreads) { NumThreads = NThreads; }
607 /// Build 'num_threads' clause with condition \a NumThreads.
609 /// \param NumThreads Number of threads for the construct.
616 OMPNumThreadsClause(Expr *NumThreads, Stmt *HelperNumThreads, argument
622 NumThreads(NumThreads) {
638 Expr *getNumThreads() const { return cast_or_null<Expr>(NumThreads); }
640 child_range children() { return child_range(&NumThreads, &NumThreads
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Daclocal.h1523 UINT32 NumThreads; member in struct:acpi_db_method_info
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp85 STATISTIC(NumThreads, "Number of jumps threaded");
2138 ++NumThreads;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h1560 OMPClause *RebuildOMPNumThreadsClause(Expr *NumThreads, argument
1564 return getSema().ActOnOpenMPNumThreadsClause(NumThreads, StartLoc,
8650 ExprResult NumThreads = getDerived().TransformExpr(C->getNumThreads()); local
8651 if (NumThreads.isInvalid())
8654 NumThreads.get(), C->getBeginLoc(), C->getLParenLoc(), C->getEndLoc());
H A DSemaOpenMP.cpp11658 OMPClause *Sema::ActOnOpenMPNumThreadsClause(Expr *NumThreads,
11662 Expr *ValExpr = NumThreads;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10216 OMPClause *ActOnOpenMPNumThreadsClause(Expr *NumThreads,

Completed in 531 milliseconds