Lines Matching refs:out_first
91 check_and_reset(Iterator expected_first, Iterator out_first, Size n, T trash) in check_and_reset() argument
93 EXPECT_EQ_N(expected_first, out_first, n, in check_and_reset()
95 std::fill_n(out_first, n, trash); in check_and_reset()
102 …operator()(Policy&& exec, Iterator1 in_first, Iterator1 in_last, Iterator2 out_first, Iterator2 ou… in operator ()()
110 auto orr = inclusive ? inclusive_scan(exec, in_first, in_last, out_first) in operator ()()
111 : exclusive_scan(exec, in_first, in_last, out_first, init); in operator ()()
115 check_and_reset(expected_first, out_first, n, trash); in operator ()()
116 fill(out_first, out_last, trash); in operator ()()
141 …operator()(Policy&& exec, Iterator1 in_first, Iterator1 in_last, Iterator2 out_first, Iterator2 ou… in operator ()()
149 auto orr = inclusive ? inclusive_scan(exec, in_first, in_last, out_first, binary_op, init) in operator ()()
150 : exclusive_scan(exec, in_first, in_last, out_first, init, binary_op); in operator ()()
153 check_and_reset(expected_first, out_first, n, trash); in operator ()()