Lines Matching refs:ets
1080 ets_type ets; in TestETSIterator() local
1081 ets.local() = 1; in TestETSIterator()
1082 REQUIRE_MESSAGE(std::next(ets.begin()) == ets.end(), "Incorrect begin or end of the ETS"); in TestETSIterator()
1083 REQUIRE_MESSAGE(std::prev(ets.end()) == ets.begin(), "Incorrect begin or end of the ETS"); in TestETSIterator()
1088 ets_type ets; in TestETSIterator() local
1089 const ets_type& cets(ets); in TestETSIterator()
1092 ets.local() = 42; in TestETSIterator()
1099 REQUIRE_MESSAGE(ets.size() == expected_ets_size, "Incorrect ETS size"); in TestETSIterator()
1102 auto iter = ets.begin(); in TestETSIterator()
1103 while(iter != ets.end()) { in TestETSIterator()
1107 while(iter != ets.begin()) { in TestETSIterator()
1120 REQUIRE(ets.begin() + expected_ets_size == ets.end()); in TestETSIterator()
1121 REQUIRE(expected_ets_size + ets.begin() == ets.end()); in TestETSIterator()
1122 REQUIRE(ets.end() - expected_ets_size == ets.begin()); in TestETSIterator()
1125 it = ets.begin(); in TestETSIterator()
1131 it = ets.begin(); in TestETSIterator()
1133 REQUIRE(it == ets.end()); in TestETSIterator()
1135 REQUIRE(it == ets.begin()); in TestETSIterator()
1138 REQUIRE(ets.begin()[i] == 42); in TestETSIterator()
1139 REQUIRE(std::prev(ets.end())[-i] == 42); in TestETSIterator()
1142 auto iter1 = ets.begin(); in TestETSIterator()
1143 auto iter2 = ets.end(); in TestETSIterator()
1160 void TestETSIteratorComparisonsBasic( ETS& ets ) { in TestETSIteratorComparisonsBasic() argument
1161 REQUIRE_MESSAGE(!ets.empty(), "Incorrect test setup"); in TestETSIteratorComparisonsBasic()
1164 it1 = ets.begin(); in TestETSIteratorComparisonsBasic()
1165 it2 = ets.begin(); in TestETSIteratorComparisonsBasic()
1167 it2 = std::prev(ets.end()); in TestETSIteratorComparisonsBasic()
1173 ets_type ets; in TestETSIteratorComparisons() local
1179 ets.local() = 42; in TestETSIteratorComparisons()
1187 TestETSIteratorComparisonsBasic<typename ets_type::iterator>(ets); in TestETSIteratorComparisons()
1188 const ets_type& cets = ets; in TestETSIteratorComparisons()
1215 oneapi::tbb::enumerable_thread_specific<int> ets; variable
1216 ets.local() = 42;
1221 ets.local() = i; in __anonba7ca1840402()
1222 CHECK(ets.local() == i); in __anonba7ca1840402()
1224 CHECK(ets.local() == 42);
1233 int ets_combined = ets.combine([](int x, int y) { in __anonba7ca1840502()