Home
last modified time | relevance | path

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

/oneTBB/test/conformance/
H A Dconformance_concurrent_queue.cpp1831 tbb::concurrent_bounded_queue<std::vector<int>> src_bnd({vect1, vect2, vect3}); in test_move_assignment_test_equal() local
1832 tbb::concurrent_bounded_queue<std::vector<int>> dst_bnd(src_bnd.get_allocator()); in test_move_assignment_test_equal()
1833 tbb::concurrent_bounded_queue<std::vector<int>> cpy_bnd(src_bnd.get_allocator()); in test_move_assignment_test_equal()
1835 cpy_bnd = src_bnd; in test_move_assignment_test_equal()
1836 dst_bnd = std::move(src_bnd); in test_move_assignment_test_equal()
1841 …test_check_move_allocator<tbb::concurrent_bounded_queue<std::vector<int>>>(src_bnd, dst_bnd, cpy_b… in test_move_assignment_test_equal()
1864 …unded_queue<std::vector<int, stateful_allocator<int>>, stateful_allocator<int>> src_bnd(src_alloc); in test_move_assignment_test_unequal() local
1868 src_bnd.push(v); in test_move_assignment_test_unequal()
1869 src_bnd.push(v); in test_move_assignment_test_unequal()
1870 cpy_bnd = src_bnd; in test_move_assignment_test_unequal()
[all …]