/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/ |
sort.h | 59 typename Comparator, typename Parallelism> 62 Comparator comp, Parallelism parallelism); 75 Comparator comp, multiway_mergesort_tag parallelism) 81 (begin, end, comp, parallelism.get_num_threads()); 84 (begin, end, comp, parallelism.get_num_threads()); 98 Comparator comp, multiway_mergesort_exact_tag parallelism) 103 (begin, end, comp, parallelism.get_num_threads()); 117 Comparator comp, multiway_mergesort_sampling_tag parallelism) 122 (begin, end, comp, parallelism.get_num_threads()) [all...] |
algo.h | [all...] |
algorithmfwd.h | 96 __gnu_parallel::_Parallelism parallelism 119 __gnu_parallel::_Parallelism parallelism 227 __gnu_parallel::_Parallelism parallelism 250 __gnu_parallel::_Parallelism parallelism 273 __gnu_parallel::_Parallelism parallelism 431 __gnu_parallel::_Parallelism parallelism 458 __gnu_parallel::_Parallelism parallelism 550 __gnu_parallel::_Parallelism parallelism 620 __gnu_parallel::_Parallelism parallelism
|
numericfwd.h | 80 __gnu_parallel::_Parallelism parallelism 122 __gnu_parallel::_Parallelism parallelism
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
parallelism | 3 $description = "Test parallelism (-j) option."; 35 # Test parallelism with included files. Here we sleep/echo while 49 # Test parallelism with included files--this time recurse first and make
|
/external/chromium/chrome/browser/ |
io_thread.cc | 72 size_t parallelism = net::HostResolver::kDefaultParallelism; local 82 parallelism = static_cast<size_t>(n); 84 LOG(ERROR) << "Invalid switch for host resolver parallelism: " << s; 110 parallelism = 6; 112 parallelism = 7; 114 parallelism = 8; 116 parallelism = 9; 118 parallelism = 10; 120 parallelism = 14; 122 parallelism = 20 [all...] |
/external/chromium_org/tools/ |
nocompile_driver.py | 87 def ValidateInput(parallelism, sourcefile_path, cflags, resultfile_path): 89 assert parallelism >= 1 412 print ('Usage: %s <parallelism> <sourcefile> <cflags> <resultfile>' % 421 parallelism = int(sys.argv[1]) 428 ValidateInput(parallelism, sourcefile_path, cflags, resultfile_path) 436 # Run the no-compile tests, but ensure we do not run more than |parallelism| 445 if len(executing_tests) >= parallelism:
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ForkJoinPool.java | 48 * ForkJoinPool} may be constructed with a given target parallelism 103 * java.util.concurrent.ForkJoinPool.common}: {@code parallelism} -- 232 * packing, we restrict maximum parallelism to (1<<15)-1 (which is 322 * creation of new ones if fewer than the given parallelism level 337 * parallelism, longer as the number of threads decreases. This 418 * It is impossible to keep exactly the target parallelism number [all...] |
Executors.java | 68 * the given parallelism level, and may use multiple queues to 69 * reduce contention. The parallelism level corresponds to the 76 * @param parallelism the targeted parallelism level 78 * @throws IllegalArgumentException if {@code parallelism <= 0} 82 public static ExecutorService newWorkStealingPool(int parallelism) { 84 (parallelism, 92 * as its target parallelism level.
|
AbstractExecutorService.java | 123 // parallelism, check to see if previously submitted tasks are 244 // executor doesn't have any/much parallelism.
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AbstractListeningExecutorService.java | 71 // parallelism, check to see if previously submitted tasks are 197 // executor doesn't have any/much parallelism.
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_log10.c | 83 * with some parallelism and it reduces the error for many args.
|
/external/chromium_org/net/dns/ |
host_resolver.cc | 39 // Parallelism is determined by the field trial.
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/ |
SFTPv3Client.java | 1297 private int parallelism = DEFAULT_MAX_PARALLELISM; field in class:SFTPv3Client [all...] |
/external/llvm/docs/ |
Vectorizers.rst | 259 high degree of parallelism can fully utilize the entire width of the machine. 260 The Loop Vectorizer increases the instruction level parallelism (ILP) by 305 The goal of SLP vectorization (a.k.a. superword-level parallelism) is
|
HowToAddABuilder.rst | 28 of parallelism (-j param) would give the fastest build. You can build
|
Lexicon.rst | 204 Superword-Level Parallelism, same as :ref:`Basic-Block Vectorization
|
/external/chromium_org/third_party/smhasher/src/ |
City.h | 26 // instruction-level parallelism. CityHash64() and CityHash128() also perform
|
/external/llvm/docs/HistoricalNotes/ |
2001-02-09-AdveComments.txt | 98 o About explicit parallelism:
|
/external/llvm/include/llvm/CodeGen/ |
SchedulerRegistry.h | 84 /// aware list scheduler that tries to increase instruction level parallelism
|
/ndk/sources/host-tools/make-3.81/tests/ |
ChangeLog | 8 * scripts/features/parallelism: Test that the jobserver is 66 * scripts/features/parallelism: Add a test for bug #15641. 80 * scripts/features/parallelism, scripts/functions/wildcard, 158 * scripts/features/parallelism: Add a test for a bug reported by 240 * scripts/features/parallelism: Add a test for exporting recursive 751 * scripts/features/parallelism: Add a check to ensure that the 799 * scripts/features/parallelism: The second test output could
|
/external/chromium_org/third_party/re2/util/ |
hash.cc | 81 This allows some parallelism. Read-after-writes are good at doubling 83 direction as the goal of parallelism. I did what I could. Rotates
|
/external/regex-re2/util/ |
hash.cc | 81 This allows some parallelism. Read-after-writes are good at doubling 83 direction as the goal of parallelism. I did what I could. Rotates
|
/external/ceres-solver/internal/ceres/ |
evaluator.h | 83 // The parallelism of the evaluator is controlled by num_threads; it
|
/external/chromium_org/tools/gn/ |
input_file_manager.cc | 274 // separately to get some parallelism. But normally there will only be one
|