Lines Matching refs:iArr2
42 int iArr2[] = {10, 11, 12, 13, 14, 15, 16, 17, 18, 19};
89 testRuntimeSpan(std::span<int>(iArr2, 1), iArr2);
90 testRuntimeSpan(std::span<int>(iArr2, 2), iArr2);
91 testRuntimeSpan(std::span<int>(iArr2, 3), iArr2);
92 testRuntimeSpan(std::span<int>(iArr2, 4), iArr2);
94 testRuntimeSpan(std::span<int>(iArr2 + 1, 1), iArr2 + 1);
95 testRuntimeSpan(std::span<int>(iArr2 + 2, 2), iArr2 + 2);
96 testRuntimeSpan(std::span<int>(iArr2 + 3, 3), iArr2 + 3);
97 testRuntimeSpan(std::span<int>(iArr2 + 4, 4), iArr2 + 4);
106 testRuntimeSpan(std::span<int, 1>(iArr2, 1), iArr2);
107 testRuntimeSpan(std::span<int, 2>(iArr2, 2), iArr2);
108 testRuntimeSpan(std::span<int, 3>(iArr2, 3), iArr2);
109 testRuntimeSpan(std::span<int, 4>(iArr2, 4), iArr2);
111 testRuntimeSpan(std::span<int, 1>(iArr2 + 1, 1), iArr2 + 1);
112 testRuntimeSpan(std::span<int, 2>(iArr2 + 2, 2), iArr2 + 2);
113 testRuntimeSpan(std::span<int, 3>(iArr2 + 3, 3), iArr2 + 3);
114 testRuntimeSpan(std::span<int, 4>(iArr2 + 4, 4), iArr2 + 4);