Home
last modified time | relevance | path

Searched refs:crp (Results 1 – 1 of 1) sorted by relevance

/oneTBB/test/conformance/
H A Dconformance_concurrent_vector.cpp198 typename V::const_reverse_iterator crp = u.rbegin(); in TestSequentialFor() local
199 REQUIRE( crp == v.crbegin() ); in TestSequentialFor()
200 REQUIRE( *crp == v.back() ); in TestSequentialFor()
201 for(std::size_t i = v.size(); i>0; --i, ++crp) { in TestSequentialFor()
202 typename V::const_reference cpref = *crp; in TestSequentialFor()
204 REQUIRE( crp!=u.rend() ); in TestSequentialFor()
206 REQUIRE( crp == u.rend() ); in TestSequentialFor()
207 REQUIRE( crp == v.crend() ); in TestSequentialFor()