HomeSort by: relevance | last modified time | path
    Searched refs:NumThreads (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/
DwarfTransformer.h 52 llvm::Error convert(uint32_t NumThreads);
  /src/sys/external/bsd/acpica/dist/debugger/
dbexec.c 640 if (Info->Threads && (Info->NumCreated < Info->NumThreads))
693 if (Info->NumCompleted == Info->NumThreads)
853 UINT32 NumThreads;
864 NumThreads = strtoul (NumThreadsArg, NULL, 0);
867 if (!NumThreads || !NumLoops)
870 NumThreads, NumLoops);
918 AcpiGbl_DbMethodInfo.NumThreads = NumThreads;
919 Size = sizeof (ACPI_THREAD_ID) * AcpiGbl_DbMethodInfo.NumThreads;
955 AcpiDbUint32ToHexString (NumThreads, AcpiGbl_DbMethodInfo.NumThreadsStr)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageViewOptions.h 51 unsigned NumThreads;
CoverageExporterJson.cpp 233 ThreadPoolStrategy S = hardware_concurrency(Options.NumThreads);
234 if (Options.NumThreads == 0) {
235 // If NumThreads is not specified, create one thread for each input, up to
CodeCoverage.cpp 737 cl::opt<unsigned> NumThreads(
741 cl::aliasopt(NumThreads));
880 ViewOpts.NumThreads = NumThreads;
1057 ThreadPoolStrategy S = hardware_concurrency(ViewOpts.NumThreads);
1058 if (ViewOpts.NumThreads == 0) {
1059 // If NumThreads is not specified, create one thread for each input, up to
CoverageReport.cpp 391 ThreadPoolStrategy S = hardware_concurrency(Options.NumThreads);
392 if (Options.NumThreads == 0) {
393 // If NumThreads is not specified, create one thread for each input, up to
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/test/
user_counters_test.cc 146 CHECK_COUNTER_VALUE(e, int, "foo", EQ, e.NumThreads());
147 CHECK_COUNTER_VALUE(e, int, "bar", EQ, 2 * e.NumThreads());
output_test.h 94 int NumThreads() const;
output_test_helper.cc 294 int Results::NumThreads() const {
  /src/external/apache2/llvm/dist/llvm/examples/SpeculativeJIT/
SpeculativeJIT.cpp 34 static cl::opt<unsigned> NumThreads("num-threads", cl::Optional,
135 ThreadPool CompileThreads{llvm::hardware_concurrency(NumThreads)};
159 if (NumThreads < 1) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-gsymutil/
llvm-gsymutil.cpp 105 NumThreads("num-threads",
281 NumThreads > 0 ? NumThreads : std::thread::hardware_concurrency();
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/
user_counters_test.cc 168 CHECK_COUNTER_VALUE(e, int, "foo", EQ, e.NumThreads());
169 CHECK_COUNTER_VALUE(e, int, "bar", EQ, 2 * e.NumThreads());
output_test.h 100 int NumThreads() const;
output_test_helper.cc 299 int Results::NumThreads() const {
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
DwarfTransformer.cpp 425 Error DwarfTransformer::convert(uint32_t NumThreads) {
427 if (NumThreads == 1) {
448 ThreadPool pool(hardware_concurrency(NumThreads));
  /src/external/apache2/llvm/dist/llvm/tools/dsymutil/
dsymutil.cpp 101 unsigned NumThreads;
285 if (opt::Arg *NumThreads = Args.getLastArg(OPT_threads))
286 Options.LinkOpts.Threads = atoi(NumThreads->getValue());
589 // If NumThreads is not specified, create one thread for each input, up to
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 327 unsigned NumThreads, FailureMode FailMode) {
338 // If NumThreads is not specified, auto-detect a good default.
339 if (NumThreads == 0)
340 NumThreads = std::min(hardware_concurrency().compute_thread_count(),
342 // FIXME: There's a bug here, where setting NumThreads = Inputs.size() fails
348 for (unsigned I = 0; I < NumThreads; ++I)
352 if (NumThreads == 1) {
356 ThreadPool Pool(hardware_concurrency(NumThreads));
358 // Load the inputs in parallel (N/NumThreads serial steps).
362 Ctx = (Ctx + 1) % NumThreads;
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
ClangScanDeps.cpp 167 NumThreads("j", llvm::cl::Optional,
558 llvm::ThreadPool Pool(llvm::hardware_concurrency(NumThreads));
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinker.h 290 void setNumThreads(unsigned NumThreads) { Options.Threads = NumThreads; }
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGOpenMPRuntimeGPU.h 223 /// \param NumThreads An integer value of threads.
225 llvm::Value *NumThreads,
CGOpenMPRuntime.cpp 2902 llvm::Value *NumThreads,
2909 CGF.Builder.CreateIntCast(NumThreads, CGF.Int32Ty, /*isSigned*/ true)};
6730 llvm::Value *NumThreads = nullptr;
6733 // calculated as <cond> ? (<numthreads> ? <numthreads> : 0 ) : 1.
6790 NumThreads = CGF.EmitScalarExpr(NumThreadsClause->getNumThreads());
6791 NumThreads = CGF.Builder.CreateIntCast(NumThreads, CGF.Int32Ty,
6794 NumThreads = CGF.Builder.CreateSelect(
6795 CGF.Builder.CreateICmpULT(DefaultThreadLimitVal, NumThreads),
    [all...]
CGOpenMPRuntime.h 1241 /// \param NumThreads An integer value of threads.
1243 llvm::Value *NumThreads,
2137 /// \param NumThreads An integer value of threads.
2138 void emitNumThreadsClause(CodeGenFunction &CGF, llvm::Value *NumThreads,
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 196 /// \param NumThreads The evaluated 'num_threads' clause expression, if any.
205 Value *NumThreads, omp::ProcBindKind ProcBind,
  /src/external/bsd/zstd/dist/contrib/pzstd/test/
OptionsTest.cpp 18 return lhs.numThreads == rhs.numThreads &&
31 << "numThreads: " << opt.numThreads;
256 TEST(Options, NumThreads) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
OpenMPClause.h 606 Stmt *NumThreads = nullptr;
609 void setNumThreads(Expr *NThreads) { NumThreads = NThreads; }
612 /// Build 'num_threads' clause with condition \a NumThreads.
614 /// \param NumThreads Number of threads for the construct.
621 OMPNumThreadsClause(Expr *NumThreads, Stmt *HelperNumThreads,
627 NumThreads(NumThreads) {
644 Expr *getNumThreads() const { return cast_or_null<Expr>(NumThreads); }
646 child_range children() { return child_range(&NumThreads, &NumThreads + 1);
    [all...]

Completed in 46 milliseconds

1 2