Searched refs:sav_cv (Results 1 – 1 of 1) sorted by relevance
/external/Microsoft-GSL/tests/ |
D | strided_span_tests.cpp | 123 strided_span<const volatile int, 1> sav_cv{ src, {2, 1} }; in SUITE() local 125 …strided_span<const volatile int, 1> sav_cv{ multi_span<const volatile int>{src}, strided_bounds<1>… in SUITE() local 127 CHECK(sav_cv.bounds().index_bounds() == index<1>{ 2 }); in SUITE() 128 CHECK(sav_cv.bounds().strides() == index<1>{ 1 }); in SUITE() 129 CHECK(sav_cv[1] == 2); in SUITE() 142 strided_span<const volatile int, 1> sav_cv{ src, {2, 1} }; in SUITE() local 144 …strided_span<const volatile int, 1> sav_cv{ multi_span<const volatile int>{src}, strided_bounds<1>… in SUITE() local 147 CHECK(sav_cv.bounds().index_bounds() == index<1>{ 2 }); in SUITE() 148 CHECK(sav_cv.bounds().strides() == index<1>{ 1 }); in SUITE() 149 CHECK(sav_cv[1] == 2); in SUITE() [all …]
|