Home
last modified time | relevance | path

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

/third_party/boost/boost/mpi/
Drequest.hpp56 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);
Dcommunicator.hpp1598 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/
Drequest_handlers.hpp577 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()