Home | History | Annotate | Download | only in parallel

Lines Matching refs:unique_copy

58 #include <parallel/unique_copy.h>
299 unique_copy(InputIterator begin1, InputIterator end1, OutputIterator out,
301 { return _GLIBCXX_STD_P::unique_copy(begin1, end1, out); }
307 unique_copy(InputIterator begin1, InputIterator end1, OutputIterator out,
309 { return _GLIBCXX_STD_P::unique_copy(begin1, end1, out, pred); }
318 { return _GLIBCXX_STD_P::unique_copy(begin, last, out, pred); }
320 // Parallel unique_copy for random access iterators
333 return _GLIBCXX_STD_P::unique_copy(begin, last, out, pred);
339 unique_copy(InputIterator begin1, InputIterator end1, OutputIterator out)
354 unique_copy(InputIterator begin1, InputIterator end1, OutputIterator out,