Home | History | Annotate | Download | only in parallel

Lines Matching refs:begin

42    * @brief Check whether @c [begin, @c end) is sorted according to @c comp.
43 * @param begin Begin iterator of sequence.
51 is_sorted(InputIterator begin, InputIterator end,
56 if (begin == end)
59 InputIterator current(begin), recent(begin);
78 * @brief Check whether @c [begin, @c end) is sorted according to @c comp.
80 * @param begin Begin iterator of sequence.
89 is_sorted_failure(InputIterator begin, InputIterator end,
95 if (begin == end)
98 InputIterator current(begin), recent(begin);
119 * @brief Check whether @c [begin, @c end) is sorted according to @c comp.
121 * @param begin Begin iterator of sequence.
129 is_sorted_print_failures(InputIterator begin, InputIterator end,
134 if (begin == end)
137 InputIterator recent(begin);
140 for (InputIterator pos(begin + 1); pos != end; pos++)
144 printf("%ld: %d %d %d %d\n", pos - begin, *(pos - 2),