HomeSort by relevance Sort by last modified time
    Searched defs:__num_threads (Results 26 - 44 of 44) sorted by null

12

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
set_operations.h 375 _ThreadIndex __num_threads = local
379 # pragma omp parallel num_threads(__num_threads)
383 __num_threads = omp_get_num_threads();
385 __borders = new _DifferenceType[__num_threads + 2];
386 __equally_split(__size, __num_threads + 1, __borders);
387 __block_begins = new _IteratorPair[__num_threads + 1];
390 __lengths = new _DifferenceType[__num_threads];
447 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
450 __block_begin = __block_begins[__num_threads];
workstealing.h 135 _ThreadIndex __num_threads = __gnu_parallel::max<_ThreadIndex> local
139 # pragma omp parallel shared(__busy) num_threads(__num_threads)
143 __num_threads = omp_get_num_threads();
146 __job = new _Job<_DifferenceType>[__num_threads * __stride];
170 // (modulo __num_threads).
171 _RandomNumber __rand_gen(__iam, __num_threads);
181 (__iam * (__length / __num_threads));
183 __my_job._M_last = (__iam == (__num_threads - 1)
185 : ((__iam + 1) * (__length / __num_threads) - 1));
multiway_merge.h 1054 const _ThreadIndex __num_threads = omp_get_num_threads(); local
1138 const _ThreadIndex __num_threads = omp_get_num_threads(); local
    [all...]
random_shuffle.h 260 * @param __num_threads Number of threads to use.
268 _ThreadIndex __num_threads,
279 if (__num_threads > __n)
280 __num_threads = static_cast<_ThreadIndex>(__n);
328 std::max<_BinIndex>(__num_threads, __num_bins));
330 if (__num_threads <= 1)
342 # pragma omp parallel num_threads(__num_threads)
344 _ThreadIndex __num_threads = omp_get_num_threads(); local
347 __pus = new _DRSSorterPU<_RAIter, _RandomNumber>[__num_threads];
349 __sd._M_temporaries = new _ValueType*[__num_threads];
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
balanced_quicksort.h 95 * @param __num_threads Number of threads that are allowed to work on
101 _Compare __comp, _ThreadIndex __num_threads)
103 _GLIBCXX_PARALLEL_ASSERT(__num_threads > 0);
144 __num_threads);
167 * @param __num_threads
174 _ThreadIndex __iam, _ThreadIndex __num_threads,
183 if (__num_threads <= 1 || __n <= 1)
195 __qsb_divide(__begin, __end, __comp, __num_threads);
204 (1, std::min<_ThreadIndex>(__num_threads - 1, __split_pos
205 * __num_threads / __n))
262 _ThreadIndex __num_threads = __tl._M_num_threads; local
    [all...]
set_operations.h 375 _ThreadIndex __num_threads = local
379 # pragma omp parallel num_threads(__num_threads)
383 __num_threads = omp_get_num_threads();
385 __borders = new _DifferenceType[__num_threads + 2];
386 __equally_split(__size, __num_threads + 1, __borders);
387 __block_begins = new _IteratorPair[__num_threads + 1];
390 __lengths = new _DifferenceType[__num_threads];
447 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
450 __block_begin = __block_begins[__num_threads];
workstealing.h 135 _ThreadIndex __num_threads = __gnu_parallel::max<_ThreadIndex> local
139 # pragma omp parallel shared(__busy) num_threads(__num_threads)
143 __num_threads = omp_get_num_threads();
146 __job = new _Job<_DifferenceType>[__num_threads * __stride];
170 // (modulo __num_threads).
171 _RandomNumber __rand_gen(__iam, __num_threads);
181 (__iam * (__length / __num_threads));
183 __my_job._M_last = (__iam == (__num_threads - 1)
185 : ((__iam + 1) * (__length / __num_threads) - 1));
multiway_merge.h 1054 const _ThreadIndex __num_threads = omp_get_num_threads(); local
1138 const _ThreadIndex __num_threads = omp_get_num_threads(); local
    [all...]
random_shuffle.h 260 * @param __num_threads Number of threads to use.
268 _ThreadIndex __num_threads,
279 if (__num_threads > __n)
280 __num_threads = static_cast<_ThreadIndex>(__n);
328 std::max<_BinIndex>(__num_threads, __num_bins));
330 if (__num_threads <= 1)
342 # pragma omp parallel num_threads(__num_threads)
344 _ThreadIndex __num_threads = omp_get_num_threads(); local
347 __pus = new _DRSSorterPU<_RAIter, _RandomNumber>[__num_threads];
349 __sd._M_temporaries = new _ValueType*[__num_threads];
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
balanced_quicksort.h 95 * @param __num_threads Number of threads that are allowed to work on
101 _Compare __comp, _ThreadIndex __num_threads)
103 _GLIBCXX_PARALLEL_ASSERT(__num_threads > 0);
144 __num_threads);
167 * @param __num_threads
174 _ThreadIndex __iam, _ThreadIndex __num_threads,
183 if (__num_threads <= 1 || __n <= 1)
195 __qsb_divide(__begin, __end, __comp, __num_threads);
204 (1, std::min<_ThreadIndex>(__num_threads - 1, __split_pos
205 * __num_threads / __n))
262 _ThreadIndex __num_threads = __tl._M_num_threads; local
    [all...]
set_operations.h 375 _ThreadIndex __num_threads = local
379 # pragma omp parallel num_threads(__num_threads)
383 __num_threads = omp_get_num_threads();
385 __borders = new _DifferenceType[__num_threads + 2];
386 __equally_split(__size, __num_threads + 1, __borders);
387 __block_begins = new _IteratorPair[__num_threads + 1];
390 __lengths = new _DifferenceType[__num_threads];
447 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
450 __block_begin = __block_begins[__num_threads];
workstealing.h 135 _ThreadIndex __num_threads = __gnu_parallel::max<_ThreadIndex> local
139 # pragma omp parallel shared(__busy) num_threads(__num_threads)
143 __num_threads = omp_get_num_threads();
146 __job = new _Job<_DifferenceType>[__num_threads * __stride];
170 // (modulo __num_threads).
171 _RandomNumber __rand_gen(__iam, __num_threads);
181 (__iam * (__length / __num_threads));
183 __my_job._M_last = (__iam == (__num_threads - 1)
185 : ((__iam + 1) * (__length / __num_threads) - 1));
multiway_merge.h 1054 const _ThreadIndex __num_threads = omp_get_num_threads(); local
1138 const _ThreadIndex __num_threads = omp_get_num_threads(); local
    [all...]
random_shuffle.h 260 * @param __num_threads Number of threads to use.
268 _ThreadIndex __num_threads,
279 if (__num_threads > __n)
280 __num_threads = static_cast<_ThreadIndex>(__n);
328 std::max<_BinIndex>(__num_threads, __num_bins));
330 if (__num_threads <= 1)
342 # pragma omp parallel num_threads(__num_threads)
344 _ThreadIndex __num_threads = omp_get_num_threads(); local
347 __pus = new _DRSSorterPU<_RAIter, _RandomNumber>[__num_threads];
349 __sd._M_temporaries = new _ValueType*[__num_threads];
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
balanced_quicksort.h 95 * @param __num_threads Number of threads that are allowed to work on
101 _Compare __comp, _ThreadIndex __num_threads)
103 _GLIBCXX_PARALLEL_ASSERT(__num_threads > 0);
144 __num_threads);
167 * @param __num_threads
174 _ThreadIndex __iam, _ThreadIndex __num_threads,
183 if (__num_threads <= 1 || __n <= 1)
195 __qsb_divide(__begin, __end, __comp, __num_threads);
204 (1, std::min<_ThreadIndex>(__num_threads - 1, __split_pos
205 * __num_threads / __n))
262 _ThreadIndex __num_threads = __tl._M_num_threads; local
    [all...]
set_operations.h 375 _ThreadIndex __num_threads = local
379 # pragma omp parallel num_threads(__num_threads)
383 __num_threads = omp_get_num_threads();
385 __borders = new _DifferenceType[__num_threads + 2];
386 __equally_split(__size, __num_threads + 1, __borders);
387 __block_begins = new _IteratorPair[__num_threads + 1];
390 __lengths = new _DifferenceType[__num_threads];
447 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
450 __block_begin = __block_begins[__num_threads];
workstealing.h 135 _ThreadIndex __num_threads = __gnu_parallel::max<_ThreadIndex> local
139 # pragma omp parallel shared(__busy) num_threads(__num_threads)
143 __num_threads = omp_get_num_threads();
146 __job = new _Job<_DifferenceType>[__num_threads * __stride];
170 // (modulo __num_threads).
171 _RandomNumber __rand_gen(__iam, __num_threads);
181 (__iam * (__length / __num_threads));
183 __my_job._M_last = (__iam == (__num_threads - 1)
185 : ((__iam + 1) * (__length / __num_threads) - 1));
multiway_merge.h 1054 const _ThreadIndex __num_threads = omp_get_num_threads(); local
1138 const _ThreadIndex __num_threads = omp_get_num_threads(); local
    [all...]
random_shuffle.h 260 * @param __num_threads Number of threads to use.
268 _ThreadIndex __num_threads,
279 if (__num_threads > __n)
280 __num_threads = static_cast<_ThreadIndex>(__n);
328 std::max<_BinIndex>(__num_threads, __num_bins));
330 if (__num_threads <= 1)
342 # pragma omp parallel num_threads(__num_threads)
344 _ThreadIndex __num_threads = omp_get_num_threads(); local
347 __pus = new _DRSSorterPU<_RAIter, _RandomNumber>[__num_threads];
349 __sd._M_temporaries = new _ValueType*[__num_threads];
    [all...]

Completed in 516 milliseconds

12