Searched refs:parallel (Results 1 - 25 of 40) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DParallel.h24 namespace parallel { namespace in namespace:llvm
26 // Strategy for the default executor used by the parallel routines provided by
28 // initialized before the first use of parallel routines.
162 } // namespace parallel
170 if (parallel::strategy.ThreadsRequested != 1) {
171 parallel::detail::parallel_sort(Start, End, Comp);
181 if (parallel::strategy.ThreadsRequested != 1) {
182 parallel::detail::parallel_for_each(Begin, End, Fn);
192 if (parallel::strategy.ThreadsRequested != 1) {
193 parallel
[all...]
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dshell-csh.mk8 # This is only obvious in parallel mode since in compat mode,
14 # In parallel mode, the shell->noPrint command is filtered from
17 # Until 2020-10-03, the output in parallel mode was garbled because
H A Ddotwait.mk11 # Ignore "--- target ---" lines printed by parallel make.
20 # * If it's expected that two or more targets may be made in parallel,
31 # be made in parallel will thus print the same strings, so that the
H A Ddeptgt-delete_on_error.mk10 # In parallel mode, regular targets are deleted, while phony and precious
H A Dvarname-make_print_var_on_error-jobs.mk20 # As of 2020-10-23, .ERROR_CMD only works in parallel mode.
H A Ddeptgt-end-jobs.mk7 # This option enables parallel mode, in which the code from job.c partially
/freebsd-13-stable/contrib/kyua/cli/
H A Dcmd_test.cpp63 /// Whether the tests are executed in parallel or not.
154 const bool parallel = (user_config.lookup< config::positive_int_node >( local
157 print_hooks hooks(ui, parallel);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DParallel.cpp20 llvm::ThreadPoolStrategy llvm::parallel::strategy;
25 namespace parallel { namespace in namespace:llvm
169 } // namespace parallel
/freebsd-13-stable/contrib/llvm-project/lld/Common/
H A DFilesystem.cpp77 if (parallel::strategy.ThreadsRequested == 1)
/freebsd-13-stable/usr.bin/paste/
H A Dpaste.c65 static int parallel(char **);
119 rval = parallel(argv);
131 parallel(char **argv) function
/freebsd-13-stable/contrib/ntp/
H A Dflock-build34 *) echo Launching $PARALLEL_BUILDS parallel builds on each machine
/freebsd-13-stable/contrib/bmake/mk/
H A Dlibs.mk72 # nor can we safely run in parallel.
H A Dprogs.mk71 # nor can we safely run in parallel.
H A Ddirdeps-cache-update.mk43 # in parallel with the rest of the build.
/freebsd-13-stable/sys/contrib/libb2/
H A Dblake2bp.c138 #pragma omp parallel shared(S)
233 #pragma omp parallel shared(S,hash)
H A Dblake2sp.c135 #pragma omp parallel shared(S)
231 #pragma omp parallel shared(S,hash)
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_blake2sp_ref.c153 #pragma omp parallel shared(S), num_threads(PARALLELISM_DEGREE)
250 #pragma omp parallel shared(S,hash), num_threads(PARALLELISM_DEGREE)
/freebsd-13-stable/share/mk/
H A Dbsd.subdir.mk60 # It is safe to install in parallel when staging.
180 # For non-parallel builds, directories depend on all targets before them.
H A Dbsd.obj.mk235 # allow parallel destruction
H A Dbsd.lib.mk430 # second time during the parallel build, and although the .WAIT in lib/Makefile
432 # parallel at the top level and are unaffected by that, so can sometimes race
/freebsd-13-stable/contrib/subversion/
H A Dwin-tests.py110 print(" -p, --parallel : run multiple tests in parallel")
142 'list', 'enable-sasl', 'bin=', 'parallel', 'http2',
178 parallel = None variable
269 elif opt in ('-p', '--parallel'):
270 parallel = 1
1104 opts.parallel = parallel
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DICF.cpp140 // other equivalence classes in parallel. They may read sections that we
403 if (parallel::strategy.ThreadsRequested == 1 || sections.size() < 1024) {
412 // Shard into non-overlapping intervals, and call Fn in parallel.
H A DSyntheticSections.cpp2749 std::min<size_t>(hardware_concurrency(parallel::strategy.ThreadsRequested)
3196 // We do it in parallel.
3205 std::min<size_t>(hardware_concurrency(parallel::strategy.ThreadsRequested)
/freebsd-13-stable/contrib/libdivsufsort/lib/
H A Ddivsufsort.c107 #pragma omp parallel default(shared) private(curbuf, k, l, d0, d1, tmp)
/freebsd-13-stable/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_mount.c1154 * over filesystems in order to spawn parallel mount tasks.
1384 * 1. Sequentially: If the parallel argument is B_FALSE or the ZFS_SERIAL_MOUNT
1387 * 2. In parallel: If the parallel argument is B_TRUE and the ZFS_SERIAL_MOUNT
1389 * to mount filesystems in parallel. This function dispatches tasks to mount
1396 size_t num_handles, zfs_iter_f func, void *data, boolean_t parallel)
1403 * of serial vs. parallel mounting.
1405 boolean_t serial_mount = !parallel ||
1422 * Issue the callback function for each dataset using a parallel
1395 zfs_foreach_mountpoint(libzfs_handle_t *hdl, zfs_handle_t **handles, size_t num_handles, zfs_iter_f func, void *data, boolean_t parallel) argument

Completed in 230 milliseconds

12