Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_combinable.cpp434 bool existed; in operator ()() local
437 existed = thread_id & 1; in operator ()()
438 int oldval = locals->local(existed); in operator ()()
439 REQUIRE_MESSAGE(existed == (i > 0), "Error on first reference"); in operator ()()
440 REQUIRE_MESSAGE((!existed || (oldval == thread_id)), "Error on fetched value"); in operator ()()
441 existed = thread_id & 1; in operator ()()
442 locals->local(existed) = thread_id; in operator ()()
443 REQUIRE_MESSAGE(existed, "Error on assignment"); in operator ()()
H A Dconformance_enumerable_thread_specific.cpp869 bool existed = false; in ets_copy_assign_test() local
871 check(check_alignment(copy.local(existed),allocator_name)); in ets_copy_assign_test()
872 REQUIRE_MESSAGE(existed, "Local data not created by ETS copy constructor"); in ets_copy_assign_test()
877 existed = false; in ets_copy_assign_test()
880 check(check_alignment(assign.local(existed),allocator_name)); in ets_copy_assign_test()
881 REQUIRE_MESSAGE(existed, "Local data not created by ETS assignment"); in ets_copy_assign_test()
890 existed = false; in ets_copy_assign_test()
892 check(check_alignment(moved.local(existed),allocator_name)); in ets_copy_assign_test()
898 existed = false; in ets_copy_assign_test()
901 check(check_alignment(move_assign.local(existed),allocator_name)); in ets_copy_assign_test()
[all …]
/oneTBB/doc/main/reference/
H A Dconcurrent_lru_cache_cls.rst146 to ``*this``. If existed, the previous reference held by ``*this`` is released. Upon