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

1 2

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
omp_loop.h 77 _ThreadIndex __num_threads = __gnu_parallel::min<_DifferenceType> local
82 # pragma omp parallel num_threads(__num_threads)
86 __num_threads = omp_get_num_threads();
87 __thread_results = new _Result[__num_threads];
89 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
101 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
omp_loop_static.h 77 _ThreadIndex __num_threads = std::min<_DifferenceType> local
82 # pragma omp parallel num_threads(__num_threads)
86 __num_threads = omp_get_num_threads();
87 __thread_results = new _Result[__num_threads];
89 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
101 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
par_loop.h 78 _ThreadIndex __num_threads = __gnu_parallel::min<_DifferenceType> local
81 # pragma omp parallel num_threads(__num_threads)
85 __num_threads = omp_get_num_threads();
87 (::operator new(__num_threads * sizeof(_Result)));
88 __constructed = new bool[__num_threads];
97 __start = __equally_split_point(__length, __num_threads, __iam),
98 __stop = __equally_split_point(__length, __num_threads, __iam + 1);
119 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
search.h 110 _ThreadIndex __num_threads = std::max<_DifferenceType> local
117 # pragma omp parallel num_threads(__num_threads)
121 __num_threads = omp_get_num_threads();
122 __splitters = new _DifferenceType[__num_threads + 1];
123 __equally_split(__input_length, __num_threads, __splitters);
unique_copy.h 69 _ThreadIndex __num_threads = __get_max_threads(); local
71 # pragma omp parallel num_threads(__num_threads)
75 __num_threads = omp_get_num_threads();
76 __borders = new _DifferenceType[__num_threads + 2];
77 __equally_split(__size, __num_threads + 1, __borders);
78 __counter = new _DifferenceType[__num_threads + 1];
132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t)
139 __begin = __borders[__num_threads];
153 __counter[__num_threads] = __i;
171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++
    [all...]
find.h 114 _ThreadIndex __num_threads = __get_max_threads(); local
115 # pragma omp parallel num_threads(__num_threads)
119 __num_threads = omp_get_num_threads();
120 __borders = new _DifferenceType[__num_threads + 1];
121 __equally_split(__length, __num_threads, __borders);
221 _ThreadIndex __num_threads = __get_max_threads(); local
222 # pragma omp parallel shared(__result) num_threads(__num_threads)
225 __num_threads = omp_get_num_threads();
345 _ThreadIndex __num_threads = __get_max_threads(); local
346 # pragma omp parallel shared(__result) num_threads(__num_threads)
    [all...]
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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
omp_loop.h 77 _ThreadIndex __num_threads = __gnu_parallel::min<_DifferenceType> local
82 # pragma omp parallel num_threads(__num_threads)
86 __num_threads = omp_get_num_threads();
87 __thread_results = new _Result[__num_threads];
89 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
101 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
omp_loop_static.h 77 _ThreadIndex __num_threads = std::min<_DifferenceType> local
82 # pragma omp parallel num_threads(__num_threads)
86 __num_threads = omp_get_num_threads();
87 __thread_results = new _Result[__num_threads];
89 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
101 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
par_loop.h 78 _ThreadIndex __num_threads = __gnu_parallel::min<_DifferenceType> local
81 # pragma omp parallel num_threads(__num_threads)
85 __num_threads = omp_get_num_threads();
87 (::operator new(__num_threads * sizeof(_Result)));
88 __constructed = new bool[__num_threads];
97 __start = __equally_split_point(__length, __num_threads, __iam),
98 __stop = __equally_split_point(__length, __num_threads, __iam + 1);
119 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
search.h 110 _ThreadIndex __num_threads = std::max<_DifferenceType> local
117 # pragma omp parallel num_threads(__num_threads)
121 __num_threads = omp_get_num_threads();
122 __splitters = new _DifferenceType[__num_threads + 1];
123 __equally_split(__input_length, __num_threads, __splitters);
unique_copy.h 69 _ThreadIndex __num_threads = __get_max_threads(); local
71 # pragma omp parallel num_threads(__num_threads)
75 __num_threads = omp_get_num_threads();
76 __borders = new _DifferenceType[__num_threads + 2];
77 __equally_split(__size, __num_threads + 1, __borders);
78 __counter = new _DifferenceType[__num_threads + 1];
132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t)
139 __begin = __borders[__num_threads];
153 __counter[__num_threads] = __i;
171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++
    [all...]
find.h 114 _ThreadIndex __num_threads = __get_max_threads(); local
115 # pragma omp parallel num_threads(__num_threads)
119 __num_threads = omp_get_num_threads();
120 __borders = new _DifferenceType[__num_threads + 1];
121 __equally_split(__length, __num_threads, __borders);
221 _ThreadIndex __num_threads = __get_max_threads(); local
222 # pragma omp parallel shared(__result) num_threads(__num_threads)
225 __num_threads = omp_get_num_threads();
345 _ThreadIndex __num_threads = __get_max_threads(); local
346 # pragma omp parallel shared(__result) num_threads(__num_threads)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
omp_loop.h 77 _ThreadIndex __num_threads = __gnu_parallel::min<_DifferenceType> local
82 # pragma omp parallel num_threads(__num_threads)
86 __num_threads = omp_get_num_threads();
87 __thread_results = new _Result[__num_threads];
89 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
101 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
omp_loop_static.h 77 _ThreadIndex __num_threads = std::min<_DifferenceType> local
82 # pragma omp parallel num_threads(__num_threads)
86 __num_threads = omp_get_num_threads();
87 __thread_results = new _Result[__num_threads];
89 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
101 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
par_loop.h 78 _ThreadIndex __num_threads = __gnu_parallel::min<_DifferenceType> local
81 # pragma omp parallel num_threads(__num_threads)
85 __num_threads = omp_get_num_threads();
87 (::operator new(__num_threads * sizeof(_Result)));
88 __constructed = new bool[__num_threads];
97 __start = __equally_split_point(__length, __num_threads, __iam),
98 __stop = __equally_split_point(__length, __num_threads, __iam + 1);
119 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
search.h 110 _ThreadIndex __num_threads = std::max<_DifferenceType> local
117 # pragma omp parallel num_threads(__num_threads)
121 __num_threads = omp_get_num_threads();
122 __splitters = new _DifferenceType[__num_threads + 1];
123 __equally_split(__input_length, __num_threads, __splitters);
unique_copy.h 69 _ThreadIndex __num_threads = __get_max_threads(); local
71 # pragma omp parallel num_threads(__num_threads)
75 __num_threads = omp_get_num_threads();
76 __borders = new _DifferenceType[__num_threads + 2];
77 __equally_split(__size, __num_threads + 1, __borders);
78 __counter = new _DifferenceType[__num_threads + 1];
132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t)
139 __begin = __borders[__num_threads];
153 __counter[__num_threads] = __i;
171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++
    [all...]
find.h 114 _ThreadIndex __num_threads = __get_max_threads(); local
115 # pragma omp parallel num_threads(__num_threads)
119 __num_threads = omp_get_num_threads();
120 __borders = new _DifferenceType[__num_threads + 1];
121 __equally_split(__length, __num_threads, __borders);
221 _ThreadIndex __num_threads = __get_max_threads(); local
222 # pragma omp parallel shared(__result) num_threads(__num_threads)
225 __num_threads = omp_get_num_threads();
345 _ThreadIndex __num_threads = __get_max_threads(); local
346 # pragma omp parallel shared(__result) num_threads(__num_threads)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
omp_loop.h 77 _ThreadIndex __num_threads = __gnu_parallel::min<_DifferenceType> local
82 # pragma omp parallel num_threads(__num_threads)
86 __num_threads = omp_get_num_threads();
87 __thread_results = new _Result[__num_threads];
89 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
101 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
omp_loop_static.h 77 _ThreadIndex __num_threads = std::min<_DifferenceType> local
82 # pragma omp parallel num_threads(__num_threads)
86 __num_threads = omp_get_num_threads();
87 __thread_results = new _Result[__num_threads];
89 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
101 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
par_loop.h 78 _ThreadIndex __num_threads = __gnu_parallel::min<_DifferenceType> local
81 # pragma omp parallel num_threads(__num_threads)
85 __num_threads = omp_get_num_threads();
87 (::operator new(__num_threads * sizeof(_Result)));
88 __constructed = new bool[__num_threads];
97 __start = __equally_split_point(__length, __num_threads, __iam),
98 __stop = __equally_split_point(__length, __num_threads, __iam + 1);
119 for (_ThreadIndex __i = 0; __i < __num_threads; ++__i)
search.h 110 _ThreadIndex __num_threads = std::max<_DifferenceType> local
117 # pragma omp parallel num_threads(__num_threads)
121 __num_threads = omp_get_num_threads();
122 __splitters = new _DifferenceType[__num_threads + 1];
123 __equally_split(__input_length, __num_threads, __splitters);
unique_copy.h 69 _ThreadIndex __num_threads = __get_max_threads(); local
71 # pragma omp parallel num_threads(__num_threads)
75 __num_threads = omp_get_num_threads();
76 __borders = new _DifferenceType[__num_threads + 2];
77 __equally_split(__size, __num_threads + 1, __borders);
78 __counter = new _DifferenceType[__num_threads + 1];
132 for (_ThreadIndex __t = 0; __t < __num_threads; ++__t)
139 __begin = __borders[__num_threads];
153 __counter[__num_threads] = __i;
171 for (_ThreadIndex __t = 0; __t < __num_threads + 1; __t++
    [all...]
find.h 114 _ThreadIndex __num_threads = __get_max_threads(); local
115 # pragma omp parallel num_threads(__num_threads)
119 __num_threads = omp_get_num_threads();
120 __borders = new _DifferenceType[__num_threads + 1];
121 __equally_split(__length, __num_threads, __borders);
221 _ThreadIndex __num_threads = __get_max_threads(); local
222 # pragma omp parallel shared(__result) num_threads(__num_threads)
225 __num_threads = omp_get_num_threads();
345 _ThreadIndex __num_threads = __get_max_threads(); local
346 # pragma omp parallel shared(__result) num_threads(__num_threads)
    [all...]

Completed in 1328 milliseconds

1 2