Home | History | Annotate | Download | only in tests

Lines Matching refs:dst

31         std::array<int, 10> dst{};
34 span<int> dst_span(dst);
40 CHECK(dst[i] == src[i]);
41 CHECK(dst[i + src.size()] == src[i]);
48 std::array<int, 10> dst{};
51 span<int> dst_span(dst);
57 CHECK(dst[i] == src[i]);
58 CHECK(dst[i + src.size()] == src[i]);
65 std::array<int, 10> dst{};
68 span<int, 10> dst_span(dst);
74 CHECK(dst[i] == src[i]);
75 CHECK(dst[i + src.size()] == src[i]);
82 std::array<int, 10> dst{};
85 span<int, 10> dst_span(dst);
91 CHECK(dst[i] == src[i]);
92 CHECK(dst[i + src.size()] == src[i]);
102 std::array<int, 10> dst{};
105 span<int> dst_span(dst);
111 CHECK(dst[i] == src[i]);
112 CHECK(dst[i + src.size()] == src[i]);
119 std::array<int, 10> dst{};
122 span<int> dst_span(dst);
128 CHECK(dst[i] == src[i]);
129 CHECK(dst[i + src.size()] == src[i]);
136 std::array<int, 10> dst{};
139 span<int, 10> dst_span(dst);
145 CHECK(dst[i] == src[i]);
146 CHECK(dst[i + src.size()] == src[i]);
153 std::array<int, 10> dst{};
156 span<int, 10> dst_span(dst);
162 CHECK(dst[i] == src[i]);
163 CHECK(dst[i + src.size()] == src[i]);
172 std::array<int*, 12> dst{};
176 span<int*> dst_span_dyn(dst);
177 span<int*, 4> dst_span_static(dst);
190 std::array<int, 4> dst{};
194 span<int> dst_span_dyn(dst);
195 span<int, 4> dst_span_static(dst);