| /freebsd-12.1/sys/contrib/dev/acpica/components/debugger/ |
| H A D | dbexec.c | 722 if (Info->Threads && (Info->NumCreated < Info->NumThreads)) in AcpiDbMethodThread() 775 if (Info->NumCompleted == Info->NumThreads) in AcpiDbMethodThread() 935 UINT32 NumThreads; in AcpiDbCreateExecutionThreads() local 946 NumThreads = strtoul (NumThreadsArg, NULL, 0); in AcpiDbCreateExecutionThreads() 949 if (!NumThreads || !NumLoops) in AcpiDbCreateExecutionThreads() 952 NumThreads, NumLoops); in AcpiDbCreateExecutionThreads() 1000 AcpiGbl_DbMethodInfo.NumThreads = NumThreads; in AcpiDbCreateExecutionThreads() 1001 Size = sizeof (ACPI_THREAD_ID) * AcpiGbl_DbMethodInfo.NumThreads; in AcpiDbCreateExecutionThreads() 1059 NumThreads, NumLoops); in AcpiDbCreateExecutionThreads() 1061 for (i = 0; i < (NumThreads); i++) in AcpiDbCreateExecutionThreads() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/llvm-cov/ |
| H A D | CodeCoverage.cpp | 649 cl::opt<unsigned> NumThreads( in run() local 653 cl::aliasopt(NumThreads)); in run() 780 ViewOpts.NumThreads = NumThreads; in run() 943 auto NumThreads = ViewOpts.NumThreads; in doShow() local 946 if (NumThreads == 0) in doShow() 947 NumThreads = in doShow() 951 if (!ViewOpts.hasOutputDirectory() || NumThreads == 1) { in doShow() 957 ThreadPool Pool(NumThreads); in doShow()
|
| H A D | CoverageReport.cpp | 356 auto NumThreads = Options.NumThreads; in prepareFileReports() local 359 if (NumThreads == 0) in prepareFileReports() 360 NumThreads = in prepareFileReports() 364 ThreadPool Pool(NumThreads); in prepareFileReports()
|
| H A D | CoverageViewOptions.h | 44 unsigned NumThreads; member
|
| /freebsd-12.1/contrib/llvm/tools/llvm-profdata/ |
| H A D | llvm-profdata.cpp | 286 unsigned NumThreads) { in mergeInstrProfile() argument 303 if (NumThreads == 0) in mergeInstrProfile() 304 NumThreads = in mergeInstrProfile() 309 for (unsigned I = 0; I < NumThreads; ++I) in mergeInstrProfile() 313 if (NumThreads == 1) { in mergeInstrProfile() 317 ThreadPool Pool(NumThreads); in mergeInstrProfile() 323 Ctx = (Ctx + 1) % NumThreads; in mergeInstrProfile() 568 cl::opt<unsigned> NumThreads( in merge_main() local 572 cl::aliasopt(NumThreads)); in merge_main() 603 OutputFormat, OutputSparse, NumThreads); in merge_main()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntimeNVPTX.h | 213 llvm::Value *NumThreads,
|
| H A D | CGOpenMPRuntime.h | 1078 llvm::Value *NumThreads, 1809 void emitNumThreadsClause(CodeGenFunction &CGF, llvm::Value *NumThreads,
|
| H A D | CGOpenMPRuntimeNVPTX.cpp | 670 llvm::Value *NumThreads = getNVPTXNumThreads(CGF); in getMasterThreadID() local 675 return Bld.CreateAnd(Bld.CreateNUWSub(NumThreads, Bld.getInt32(1)), in getMasterThreadID() 1917 llvm::Value *NumThreads, in emitNumThreadsClause() argument 1923 CGOpenMPRuntime::emitNumThreadsClause(CGF, NumThreads, Loc); in emitNumThreadsClause()
|
| H A D | CGOpenMPRuntime.cpp | 3552 llvm::Value *NumThreads, in emitNumThreadsClause() argument 3559 CGF.Builder.CreateIntCast(NumThreads, CGF.Int32Ty, /*isSigned*/ true)}; in emitNumThreadsClause() 6523 llvm::Value *NumThreads = in emitNumThreadsForTargetDirective() local 6527 Bld.CreateIntCast(NumThreads, CGF.Int32Ty, /*IsSigned=*/true); in emitNumThreadsForTargetDirective() 8299 llvm::Value *NumThreads = emitNumThreadsForTargetDirective(*this, CGF, D); in emitTargetCall() local 8335 assert(NumThreads && "Thread limit expression should be available along " in emitTargetCall() 8345 NumThreads}; in emitTargetCall() 9682 llvm::Value *NumThreads, in emitNumThreadsClause() argument
|
| H A D | CGStmtOpenMP.cpp | 1235 llvm::Value *NumThreads = in emitCommonOMPParallelDirective() local 1239 CGF, NumThreads, NumThreadsClause->getBeginLoc()); in emitCommonOMPParallelDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 389 Stmt *NumThreads = nullptr; variable 392 void setNumThreads(Expr *NThreads) { NumThreads = NThreads; } in setNumThreads() 404 OMPNumThreadsClause(Expr *NumThreads, Stmt *HelperNumThreads, in OMPNumThreadsClause() argument 410 NumThreads(NumThreads) { in OMPNumThreadsClause() 426 Expr *getNumThreads() const { return cast_or_null<Expr>(NumThreads); } in getNumThreads() 428 child_range children() { return child_range(&NumThreads, &NumThreads + 1); } in children()
|
| /freebsd-12.1/sys/contrib/zstd/contrib/pzstd/test/ |
| H A D | OptionsTest.cpp | 256 TEST(Options, NumThreads) { in TEST() argument
|
| /freebsd-12.1/sys/contrib/dev/acpica/include/ |
| H A D | aclocal.h | 1523 UINT32 NumThreads; member
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | JumpThreading.cpp | 85 STATISTIC(NumThreads, "Number of jumps threaded"); 2071 ++NumThreads; in ThreadEdge()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | TreeTransform.h | 1520 OMPClause *RebuildOMPNumThreadsClause(Expr *NumThreads, in RebuildOMPNumThreadsClause() argument 1524 return getSema().ActOnOpenMPNumThreadsClause(NumThreads, StartLoc, in RebuildOMPNumThreadsClause() 8306 ExprResult NumThreads = getDerived().TransformExpr(C->getNumThreads()); in TransformOMPNumThreadsClause() local 8307 if (NumThreads.isInvalid()) in TransformOMPNumThreadsClause() 8310 NumThreads.get(), C->getBeginLoc(), C->getLParenLoc(), C->getEndLoc()); in TransformOMPNumThreadsClause()
|
| H A D | SemaOpenMP.cpp | 8950 OMPClause *Sema::ActOnOpenMPNumThreadsClause(Expr *NumThreads, in ActOnOpenMPNumThreadsClause() argument 8954 Expr *ValExpr = NumThreads; in ActOnOpenMPNumThreadsClause()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | Sema.h | 9124 OMPClause *ActOnOpenMPNumThreadsClause(Expr *NumThreads,
|