/third_party/boost/libs/fiber/examples/ |
D | ping_pong.cpp | 21 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()
|
D | wait_stuff.cpp | 233 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/ |
D | test_buffered_channel_dispatch.cpp | 161 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 …]
|
D | test_buffered_channel_post.cpp | 161 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 …]
|
D | test_unbuffered_channel_dispatch.cpp | 169 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()
|
D | test_unbuffered_channel_post.cpp | 169 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/ |
D | skynet_std.cpp | 32 sum += rc.value_pop(); in skynet() 47 result = rc.value_pop(); in main()
|
D | skynet_pthread.cpp | 61 sum += rc.value_pop(); in skynet() 79 result = rc.value_pop(); in main()
|
D | buffered_channel.hpp | 199 value_type value_pop() { in value_pop() function in buffered_channel
|
/third_party/boost/libs/fiber/performance/fiber/ |
D | skynet_detach.cpp | 45 sum += rc.value_pop(); in skynet() 67 result = rc.value_pop(); in main()
|
D | skynet_join.cpp | 49 sum += rc.value_pop(); in skynet() 71 result = rc.value_pop(); in main()
|
D | skynet_stealing_join.cpp | 58 sum += rc.value_pop(); in skynet() 93 result = rc.value_pop(); in main()
|
D | skynet_stealing_detach.cpp | 57 sum += rc.value_pop(); in skynet() 89 result = rc.value_pop(); in main()
|
D | skynet_shared_detach.cpp | 56 sum += rc.value_pop(); in skynet() 89 result = rc.value_pop(); in main()
|
D | skynet_shared_join.cpp | 60 sum += rc.value_pop(); in skynet() 93 result = rc.value_pop(); in main()
|
/third_party/boost/libs/fiber/doc/ |
D | buffered_channel.qbk | 101 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();
|
D | unbuffered_channel.qbk | 103 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/ |
D | skynet_stealing_detach.cpp | 66 sum += rc.value_pop(); in skynet() 101 result = rc.value_pop(); in main()
|
/third_party/boost/libs/fiber/examples/asio/ |
D | exchange.cpp | 37 int i = c->value_pop(); in bar()
|
/third_party/boost/boost/fiber/ |
D | unbuffered_channel.hpp | 453 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_()
|
D | buffered_channel.hpp | 448 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/ |
D | compliance.qbk | 158 [[X.1.1.2] [value_pop] [no] [ renamed pull_front with two flavors. ]]
|