Home
last modified time | relevance | path

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

/third_party/boost/boost/mpi/detail/
Drequest_handlers.hpp282 if (m_requests[i] != MPI_REQUEST_NULL) { in cancel()
283 BOOST_MPI_CHECK_RESULT(MPI_Cancel, (m_requests+i)); in cancel()
291 MPI_Request m_requests[2]; member in boost::mpi::request::legacy_handler
309 source, tag, comm, m_requests+0)); in legacy_serialized_handler()
315 if (m_requests[1] == MPI_REQUEST_NULL) { in wait()
318 (m_requests, &stat.m_status)); in wait()
324 MPI_Comm(m_comm), m_requests + 1)); in wait()
329 (m_requests + 1, &stat.m_status)); in wait()
339 if (m_requests[1] == MPI_REQUEST_NULL) { in test()
342 (m_requests, &flag, &stat.m_status)); in test()
[all …]
/third_party/boost/libs/mpi/src/
Drequest.cpp84 dest, tag, comm, handler->m_requests)); in make_packed_send()
88 dest, tag, comm, handler->m_requests+1)); in make_packed_send()
107 return m_requests[0] != MPI_REQUEST_NULL || m_requests[1] != MPI_REQUEST_NULL; in active()
156 m_requests[0] = MPI_REQUEST_NULL; in dynamic_handler()
157 m_requests[1] = MPI_REQUEST_NULL; in dynamic_handler()
166 int error_code = MPI_Waitall(2, m_requests, stats); in wait()
194 int error_code = MPI_Testall(2, m_requests, &flag, stats); in test()
223 BOOST_MPI_CHECK_RESULT(MPI_Cancel, (&m_requests[0])); in cancel()
224 BOOST_MPI_CHECK_RESULT(MPI_Cancel, (&m_requests[1])); in cancel()
230 return (m_requests[0] != MPI_REQUEST_NULL in active()
[all …]