Home | History | Annotate | Download | only in Support

Lines Matching refs:IndexTy

95 template <class IndexTy, class FuncTy>
96 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) {
168 template <class IndexTy, class FuncTy>
169 void parallel_for_each_n(IndexTy Begin, IndexTy End, FuncTy Fn) {
175 IndexTy I = Begin;
178 for (IndexTy J = I, E = I + TaskSize; J != E; ++J)
182 for (IndexTy J = I; J < End; ++J)
213 template <class Policy, class IndexTy, class FuncTy>
214 void for_each_n(Policy policy, IndexTy Begin, IndexTy End, FuncTy Fn) {
217 for (IndexTy I = Begin; I != End; ++I)
237 template <class IndexTy, class FuncTy>
238 void for_each_n(parallel_execution_policy policy, IndexTy Begin, IndexTy End,