Searched refs:make_trivial_recv (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/boost/mpi/ |
D | request.hpp | 56 static request make_trivial_recv(communicator const& comm, int dest, int tag, T& value); 58 static request make_trivial_recv(communicator const& comm, int dest, int tag, T* values, int n);
|
D | communicator.hpp | 1598 return request::make_trivial_recv(*this, source, tag, value); in irecv_impl() 1620 return request::make_trivial_recv(*this, source, tag, values, n); in array_irecv_impl()
|
/third_party/boost/boost/mpi/detail/ |
D | request_handlers.hpp | 577 request::make_trivial_recv(communicator const& comm, int dest, int tag, T* values, int n) { in make_trivial_recv() function in boost::mpi::request 588 request::make_trivial_recv(communicator const& comm, int dest, int tag, T& value) { in make_trivial_recv() function in boost::mpi::request 589 return make_trivial_recv(comm, dest, tag, &value, 1); in make_trivial_recv()
|