Lines Matching refs:first2
44 Holder<Incomplete> **first2 = u.data; in all_the_algorithms() local
62 (void)std::copy(first, last, first2); in all_the_algorithms()
64 (void)std::copy_n(first, count, first2); in all_the_algorithms()
68 (void)std::equal(first, last, first2); in all_the_algorithms()
69 (void)std::equal(first, last, first2, std::equal_to<void*>()); in all_the_algorithms()
71 (void)std::equal(first, last, first2, last2); in all_the_algorithms()
72 (void)std::equal(first, last, first2, last2, std::equal_to<void*>()); in all_the_algorithms()
79 (void)std::find_end(first, last, first2, mid2); in all_the_algorithms()
80 (void)std::find_end(first, last, first2, mid2, std::equal_to<void*>()); in all_the_algorithms()
89 (void)std::includes(first, last, first2, last2); in all_the_algorithms()
90 (void)std::includes(first, last, first2, last2, std::less<void*>()); in all_the_algorithms()
96 (void)std::is_permutation(first, last, first2); in all_the_algorithms()
97 (void)std::is_permutation(first, last, first2, std::equal_to<void*>()); in all_the_algorithms()
99 (void)std::is_permutation(first, last, first2, last2); in all_the_algorithms()
100 (void)std::is_permutation(first, last, first2, last2, std::equal_to<void*>()); in all_the_algorithms()
109 (void)std::lexicographical_compare(first, last, first2, last2); in all_the_algorithms()
110 (void)std::lexicographical_compare(first, last, first2, last2, std::less<void*>()); in all_the_algorithms()
124 (void)std::merge(first, mid, mid, last, first2); in all_the_algorithms()
125 (void)std::merge(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
142 (void)std::mismatch(first, last, first2); in all_the_algorithms()
143 (void)std::mismatch(first, last, first2, std::equal_to<void*>()); in all_the_algorithms()
145 (void)std::mismatch(first, last, first2, last2); in all_the_algorithms()
146 (void)std::mismatch(first, last, first2, last2, std::equal_to<void*>()); in all_the_algorithms()
148 (void)std::move(first, last, first2); in all_the_algorithms()
159 (void)std::partial_sort_copy(first, last, first2, mid2); in all_the_algorithms()
160 (void)std::partial_sort_copy(first, last, first2, mid2, std::less<void*>()); in all_the_algorithms()
162 (void)std::partition_copy(first, last, first2, last2, UnaryTrue()); in all_the_algorithms()
171 (void)std::remove_copy(first, last, first2, value); in all_the_algorithms()
172 (void)std::remove_copy_if(first, last, first2, UnaryTrue()); in all_the_algorithms()
175 (void)std::replace_copy(first, last, first2, value, value); in all_the_algorithms()
176 (void)std::replace_copy_if(first, last, first2, UnaryTrue(), value); in all_the_algorithms()
179 (void)std::reverse_copy(first, last, first2); in all_the_algorithms()
181 (void)std::rotate_copy(first, mid, last, first2); in all_the_algorithms()
182 (void)std::search(first, last, first2, mid2); in all_the_algorithms()
183 (void)std::search(first, last, first2, mid2, std::equal_to<void*>()); in all_the_algorithms()
186 (void)std::set_difference(first, mid, mid, last, first2); in all_the_algorithms()
187 (void)std::set_difference(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
188 (void)std::set_intersection(first, mid, mid, last, first2); in all_the_algorithms()
189 (void)std::set_intersection(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
190 (void)std::set_symmetric_difference(first, mid, mid, last, first2); in all_the_algorithms()
191 (void)std::set_symmetric_difference(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
192 (void)std::set_union(first, mid, mid, last, first2); in all_the_algorithms()
193 (void)std::set_union(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
206 (void)std::transform(first, last, first2, UnaryTransform()); in all_the_algorithms()
207 (void)std::transform(first, mid, mid, first2, BinaryTransform()); in all_the_algorithms()
210 (void)std::unique_copy(first, last, first2); in all_the_algorithms()
211 (void)std::unique_copy(first, last, first2, std::equal_to<void*>()); in all_the_algorithms()