Lines Matching full:sendbuf
1700 /* pre: must be readable: (sendbuf,sendcount,sendtype)
1706 void *sendbuf, int sendcount, MPI_Datatype sendtype,
1719 check_mem_is_defined(sendbuf, sendcount, sendtype);
1723 CALL_FN_W_12W(err, fn, sendbuf,sendcount,sendtype,dest,sendtag,
1944 pre: (all) must be readable: (sendbuf,sendcount,sendtype)
1949 void *sendbuf, int sendcount, MPI_Datatype sendtype,
1959 check_mem_is_defined(sendbuf, sendcount, sendtype);
1963 CALL_FN_W_8W(err, fn, sendbuf,sendcount,sendtype,
1980 /* pre: (root only): must be readable: (sendbuf,sendcount * comm_size,sendtype)
1985 void* sendbuf, int sendcount, MPI_Datatype sendtype,
1997 check_mem_is_defined(sendbuf, sendcount * sz, sendtype);
1999 CALL_FN_W_8W(err, fn, sendbuf,sendcount,sendtype,
2015 /* pre: (all) must be readable: (sendbuf,sendcount * comm_size,sendtype)
2020 void* sendbuf, int sendcount, MPI_Datatype sendtype,
2029 check_mem_is_defined(sendbuf, sendcount * sz, sendtype);
2032 CALL_FN_W_7W(err, fn, sendbuf,sendcount,sendtype,
2049 /* rd: (sendbuf,count,datatype) for all
2052 int WRAPPER_FOR(PMPI_Reduce)(void *sendbuf, void *recvbuf,
2063 check_mem_is_defined(sendbuf, count, datatype);
2067 CALL_FN_W_7W(err, fn, sendbuf,recvbuf,count,datatype,op,root,comm);
2077 /* rd: (sendbuf,count,datatype) for all
2080 int WRAPPER_FOR(PMPI_Allreduce)(void *sendbuf, void *recvbuf,
2089 check_mem_is_defined(sendbuf, count, datatype);
2092 CALL_FN_W_6W(err, fn, sendbuf,recvbuf,count,datatype,op,comm);