Lines Matching refs:sendbuf
1681 /* pre: must be readable: (sendbuf,sendcount,sendtype)
1687 void *sendbuf, int sendcount, MPI_Datatype sendtype,
1700 check_mem_is_defined(sendbuf, sendcount, sendtype);
1703 CALL_FN_W_12W(err, fn, sendbuf,sendcount,sendtype,dest,sendtag,
1913 pre: (all) must be readable: (sendbuf,sendcount,sendtype)
1918 void *sendbuf, int sendcount, MPI_Datatype sendtype,
1928 check_mem_is_defined(sendbuf, sendcount, sendtype);
1931 CALL_FN_W_8W(err, fn, sendbuf,sendcount,sendtype,
1947 /* pre: (root only): must be readable: (sendbuf,sendcount * comm_size,sendtype)
1952 void* sendbuf, int sendcount, MPI_Datatype sendtype,
1964 check_mem_is_defined(sendbuf, sendcount * sz, sendtype);
1965 CALL_FN_W_8W(err, fn, sendbuf,sendcount,sendtype,
1980 /* pre: (all) must be readable: (sendbuf,sendcount * comm_size,sendtype)
1985 void* sendbuf, int sendcount, MPI_Datatype sendtype,
1994 check_mem_is_defined(sendbuf, sendcount * sz, sendtype);
1996 CALL_FN_W_7W(err, fn, sendbuf,sendcount,sendtype,
2012 /* rd: (sendbuf,count,datatype) for all
2015 int WRAPPER_FOR(PMPI_Reduce)(void *sendbuf, void *recvbuf,
2026 check_mem_is_defined(sendbuf, count, datatype);
2029 CALL_FN_W_7W(err, fn, sendbuf,recvbuf,count,datatype,op,root,comm);
2038 /* rd: (sendbuf,count,datatype) for all
2041 int WRAPPER_FOR(PMPI_Allreduce)(void *sendbuf, void *recvbuf,
2050 check_mem_is_defined(sendbuf, count, datatype);
2052 CALL_FN_W_6W(err, fn, sendbuf,recvbuf,count,datatype,op,comm);