Home
last modified time | relevance | path

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

/third_party/boost/libs/fiber/examples/
Dping_pong.cpp21 std::cout << chan2.value_pop() << "\n"; in main()
23 std::cout << chan2.value_pop() << "\n"; in main()
25 std::cout << chan2.value_pop() << "\n"; in main()
28 std::cout << chan1.value_pop() << "\n"; in main()
30 std::cout << chan1.value_pop() << "\n"; in main()
32 std::cout << chan1.value_pop() << "\n"; in main()
Dwait_stuff.cpp233 return_t value( chanp->value_pop() ); in wait_first_value()
318 future_t future( chanp->value_pop() ); in wait_first_outcome()
415 future_t future( chanp->value_pop() ); in wait_first_success()
485 return_t value( chanp->value_pop() ); in wait_first_value_het()
/third_party/boost/libs/fiber/test/
Dtest_buffered_channel_dispatch.cpp161 v2 = c.value_pop(); in test_value_pop()
170 v2 = c.value_pop(); in test_value_pop_closed()
174 c.value_pop(); in test_value_pop_closed()
185 v2 = c.value_pop(); in test_value_pop_success()
341 BOOST_CHECK_EQUAL( 1, c.value_pop() ); in test_wm_1()
347 BOOST_CHECK_EQUAL( 2, c.value_pop() ); in test_wm_1()
350 BOOST_CHECK_EQUAL( 3, c.value_pop() ); in test_wm_1()
353 BOOST_CHECK_EQUAL( 4, c.value_pop() ); in test_wm_1()
357 BOOST_CHECK_EQUAL( 5, c.value_pop() ); in test_wm_1()
405 BOOST_CHECK_EQUAL( 1, c.value_pop() ); in test_wm_2()
[all …]
Dtest_buffered_channel_post.cpp161 v2 = c.value_pop(); in test_value_pop()
170 v2 = c.value_pop(); in test_value_pop_closed()
174 c.value_pop(); in test_value_pop_closed()
185 v2 = c.value_pop(); in test_value_pop_success()
341 BOOST_CHECK_EQUAL( 1, c.value_pop() ); in test_wm_1()
347 BOOST_CHECK_EQUAL( 2, c.value_pop() ); in test_wm_1()
350 BOOST_CHECK_EQUAL( 3, c.value_pop() ); in test_wm_1()
353 BOOST_CHECK_EQUAL( 4, c.value_pop() ); in test_wm_1()
357 BOOST_CHECK_EQUAL( 5, c.value_pop() ); in test_wm_1()
403 BOOST_CHECK_EQUAL( 1, c.value_pop() ); in test_wm_2()
[all …]
Dtest_unbuffered_channel_dispatch.cpp169 v2 = c.value_pop(); in test_value_pop()
181 int v2 = c.value_pop(); in test_value_pop_closed()
186 c.value_pop(); in test_value_pop_closed()
197 v2 = c.value_pop(); in test_value_pop_success()
320 BOOST_CHECK_EQUAL( 1, c.value_pop() ); in test_wm_1()
326 BOOST_CHECK_EQUAL( 2, c.value_pop() ); in test_wm_1()
329 BOOST_CHECK_EQUAL( 3, c.value_pop() ); in test_wm_1()
332 BOOST_CHECK_EQUAL( 4, c.value_pop() ); in test_wm_1()
336 BOOST_CHECK_EQUAL( 5, c.value_pop() ); in test_wm_1()
Dtest_unbuffered_channel_post.cpp169 v2 = c.value_pop(); in test_value_pop()
181 int v2 = c.value_pop(); in test_value_pop_closed()
186 c.value_pop(); in test_value_pop_closed()
197 v2 = c.value_pop(); in test_value_pop_success()
320 BOOST_CHECK_EQUAL( 1, c.value_pop() ); in test_wm_1()
326 BOOST_CHECK_EQUAL( 2, c.value_pop() ); in test_wm_1()
329 BOOST_CHECK_EQUAL( 3, c.value_pop() ); in test_wm_1()
332 BOOST_CHECK_EQUAL( 4, c.value_pop() ); in test_wm_1()
336 BOOST_CHECK_EQUAL( 5, c.value_pop() ); in test_wm_1()
/third_party/boost/libs/fiber/performance/thread/
Dskynet_std.cpp32 sum += rc.value_pop(); in skynet()
47 result = rc.value_pop(); in main()
Dskynet_pthread.cpp61 sum += rc.value_pop(); in skynet()
79 result = rc.value_pop(); in main()
Dbuffered_channel.hpp199 value_type value_pop() { in value_pop() function in buffered_channel
/third_party/boost/libs/fiber/performance/fiber/
Dskynet_detach.cpp45 sum += rc.value_pop(); in skynet()
67 result = rc.value_pop(); in main()
Dskynet_join.cpp49 sum += rc.value_pop(); in skynet()
71 result = rc.value_pop(); in main()
Dskynet_stealing_join.cpp58 sum += rc.value_pop(); in skynet()
93 result = rc.value_pop(); in main()
Dskynet_stealing_detach.cpp57 sum += rc.value_pop(); in skynet()
89 result = rc.value_pop(); in main()
Dskynet_shared_detach.cpp56 sum += rc.value_pop(); in skynet()
89 result = rc.value_pop(); in main()
Dskynet_shared_join.cpp60 sum += rc.value_pop(); in skynet()
93 result = rc.value_pop(); in main()
/third_party/boost/libs/fiber/doc/
Dbuffered_channel.qbk101 value_type value_pop();
146 `this->value_pop()` will receive an exception.]]
154 blocked on `this->pop()`, `this->value_pop()`, `this->pop_wait_for()` or
170 blocked on `this->pop()`, `this->value_pop()`, `this->pop_wait_for()` or
200 [member_heading [cls]..value_pop]
202 value_type value_pop();
Dunbuffered_channel.qbk103 value_type value_pop();
138 `this->value_pop()` will receive an exception.]]
146 blocked on `this->pop()`, `this->value_pop()`, `this->pop_wait_for()` or
175 [member_heading [cls]..value_pop]
177 value_type value_pop();
/third_party/boost/libs/fiber/performance/fiber/numa/
Dskynet_stealing_detach.cpp66 sum += rc.value_pop(); in skynet()
101 result = rc.value_pop(); in main()
/third_party/boost/libs/fiber/examples/asio/
Dexchange.cpp37 int i = c->value_pop(); in bar()
/third_party/boost/boost/fiber/
Dunbuffered_channel.hpp453 value_type value_pop() { in value_pop() function in boost::fibers::unbuffered_channel
583 … ::new ( static_cast< void * >( std::addressof( storage_) ) ) value_type{ chan_->value_pop() }; in increment_()
Dbuffered_channel.hpp448 value_type value_pop() { in value_pop() function in boost::fibers::buffered_channel
553 … ::new ( static_cast< void * >( std::addressof( storage_) ) ) value_type{ chan_->value_pop() }; in increment_()
/third_party/boost/libs/thread/doc/
Dcompliance.qbk158 [[X.1.1.2] [value_pop] [no] [ renamed pull_front with two flavors. ]]