sendcount          31 ompi/contrib/libompitrace/allgather.c int MPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          46 ompi/contrib/libompitrace/allgather.c            rank, (uintptr_t) sendbuf, sendcount, sendtypename, (uintptr_t) recvbuf, recvcount, recvtypename, commname);
sendcount          49 ompi/contrib/libompitrace/allgather.c     return PMPI_Allgather(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm);
sendcount          31 ompi/contrib/libompitrace/allgatherv.c int MPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          46 ompi/contrib/libompitrace/allgatherv.c            rank, (uintptr_t) sendbuf, sendcount, sendtypename, (uintptr_t) recvbuf, recvtypename, commname);
sendcount          49 ompi/contrib/libompitrace/allgatherv.c     return PMPI_Allgatherv(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm);
sendcount          32 ompi/contrib/libompitrace/sendrecv.c int MPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          51 ompi/contrib/libompitrace/sendrecv.c             rank, (uintptr_t) sendbuf, sendcount, sendtypename, dest, sendtag,
sendcount          57 ompi/contrib/libompitrace/sendrecv.c     return PMPI_Sendrecv(sendbuf, sendcount, sendtype, dest, sendtag,
sendcount          49 ompi/mca/coll/base/coll_base_bcast.c     int sendcount;    /* number of elements sent in this segment */
sendcount          83 ompi/mca/coll/base/coll_base_bcast.c         sendcount = count_by_segment;
sendcount          86 ompi/mca/coll/base/coll_base_bcast.c                 sendcount = original_count - segindex * count_by_segment;
sendcount          89 ompi/mca/coll/base/coll_base_bcast.c                 err = MCA_PML_CALL(isend(tmpbuf, sendcount, datatype,
sendcount         165 ompi/mca/coll/base/coll_base_bcast.c         sendcount = original_count - (ptrdiff_t)(num_segments - 1) * count_by_segment;
sendcount         167 ompi/mca/coll/base/coll_base_bcast.c             err = MCA_PML_CALL(isend(tmpbuf, sendcount, datatype,
sendcount         369 ompi/mca/coll/base/coll_base_bcast.c     int sendcount[2];      /* the same like segcount, except for the last segment */
sendcount         445 ompi/mca/coll/base/coll_base_bcast.c         sendcount[0] = segcount[0];
sendcount         446 ompi/mca/coll/base/coll_base_bcast.c         sendcount[1] = segcount[1];
sendcount         456 ompi/mca/coll/base/coll_base_bcast.c                     sendcount[i] = counts[i] - segindex*segcount[i];
sendcount         458 ompi/mca/coll/base/coll_base_bcast.c                 MCA_PML_CALL(send(tmpbuf[i], sendcount[i], datatype,
sendcount         481 ompi/mca/coll/base/coll_base_bcast.c         sendcount[lr] = segcount[lr];
sendcount         482 ompi/mca/coll/base/coll_base_bcast.c         err = MCA_PML_CALL(irecv(tmpbuf[lr], sendcount[lr], datatype,
sendcount         490 ompi/mca/coll/base/coll_base_bcast.c                 sendcount[lr] = counts[lr] - (ptrdiff_t)segindex * (ptrdiff_t)segcount[lr];
sendcount         492 ompi/mca/coll/base/coll_base_bcast.c             err = MCA_PML_CALL(irecv( tmpbuf[lr] + realsegsize[lr], sendcount[lr],
sendcount         515 ompi/mca/coll/base/coll_base_bcast.c             err = MCA_PML_CALL(send(tmpbuf[lr], sendcount[lr], datatype,
sendcount         525 ompi/mca/coll/base/coll_base_bcast.c         sendcount[lr] = segcount[lr];
sendcount         529 ompi/mca/coll/base/coll_base_bcast.c                 sendcount[lr] = counts[lr] - (ptrdiff_t)segindex * (ptrdiff_t)segcount[lr];
sendcount         531 ompi/mca/coll/base/coll_base_bcast.c             err = MCA_PML_CALL(recv(tmpbuf[lr], sendcount[lr], datatype,
sendcount          70 ompi/mca/coll/base/coll_base_functions.h #define ALLGATHER_BASE_ARGS           const void *sendbuf, int sendcount, struct ompi_datatype_t *sendtype, void *recvbuf, int recvcount, struct ompi_datatype_t *recvtype, struct ompi_communicator_t *comm
sendcount          71 ompi/mca/coll/base/coll_base_functions.h #define ALLGATHERV_BASE_ARGS          const void *sendbuf, int sendcount, struct ompi_datatype_t *sendtype, void *recvbuf, const int recvcounts[], const int displs[], struct ompi_datatype_t *recvtype, struct ompi_communicator_t *comm
sendcount          73 ompi/mca/coll/base/coll_base_functions.h #define ALLTOALL_BASE_ARGS            const void *sendbuf, int sendcount, struct ompi_datatype_t *sendtype, void *recvbuf, int recvcount, struct ompi_datatype_t *recvtype, struct ompi_communicator_t *comm
sendcount          79 ompi/mca/coll/base/coll_base_functions.h #define GATHER_BASE_ARGS              const void *sendbuf, int sendcount, struct ompi_datatype_t *sendtype, void *recvbuf, int recvcount, struct ompi_datatype_t *recvtype, int root, struct ompi_communicator_t *comm
sendcount          80 ompi/mca/coll/base/coll_base_functions.h #define GATHERV_BASE_ARGS             const void *sendbuf, int sendcount, struct ompi_datatype_t *sendtype, void *recvbuf, const int recvcounts[], const int displs[], struct ompi_datatype_t *recvtype, int root, struct ompi_communicator_t *comm
sendcount          85 ompi/mca/coll/base/coll_base_functions.h #define SCATTER_BASE_ARGS             const void *sendbuf, int sendcount, struct ompi_datatype_t *sendtype, void *recvbuf, int recvcount, struct ompi_datatype_t *recvtype, int root, struct ompi_communicator_t *comm
sendcount          87 ompi/mca/coll/base/coll_base_functions.h #define NEIGHBOR_ALLGATHER_BASE_ARGS  const void *sendbuf, int sendcount, struct ompi_datatype_t *sendtype, void *recvbuf, int recvcount, struct ompi_datatype_t *recvtype, struct ompi_communicator_t *comm
sendcount          88 ompi/mca/coll/base/coll_base_functions.h #define NEIGHBOR_ALLGATHERV_BASE_ARGS const void *sendbuf, int sendcount, struct ompi_datatype_t *sendtype, void *recvbuf, const int recvcounts[], const int displs[], struct ompi_datatype_t *recvtype, struct ompi_communicator_t *comm
sendcount          89 ompi/mca/coll/base/coll_base_functions.h #define NEIGHBOR_ALLTOALL_BASE_ARGS   const void *sendbuf, int sendcount, struct ompi_datatype_t *sendtype, void *recvbuf, int recvcount, struct ompi_datatype_t *recvtype, struct ompi_communicator_t *comm
sendcount         162 ompi/mca/coll/base/coll_base_functions.h #define ALLGATHER_BASE_ARG_NAMES           sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm
sendcount         163 ompi/mca/coll/base/coll_base_functions.h #define ALLGATHERV_BASE_ARG_NAMES          sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm
sendcount         165 ompi/mca/coll/base/coll_base_functions.h #define ALLTOALL_BASE_ARG_NAMES            sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm
sendcount         171 ompi/mca/coll/base/coll_base_functions.h #define GATHER_BASE_ARG_NAMES              sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm
sendcount         172 ompi/mca/coll/base/coll_base_functions.h #define GATHERV_BASE_ARG_NAMES             sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root, comm
sendcount         177 ompi/mca/coll/base/coll_base_functions.h #define SCATTER_BASE_ARG_NAMES             sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm
sendcount         179 ompi/mca/coll/base/coll_base_functions.h #define NEIGHBOR_ALLGATHER_BASE_ARG_NAMES  sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm
sendcount         180 ompi/mca/coll/base/coll_base_functions.h #define NEIGHBOR_ALLGATHERV_BASE_ARG_NAMES sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm
sendcount         181 ompi/mca/coll/base/coll_base_functions.h #define NEIGHBOR_ALLTOALL_BASE_ARG_NAMES   sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm
sendcount         165 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_iallgather(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         168 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_iallgatherv(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount         174 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_ialltoall(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         193 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_igather(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         196 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_igatherv(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         213 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_iscatter(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         223 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_iallgather_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         226 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_iallgatherv_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount         232 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_ialltoall_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         248 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_igather_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         251 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_igatherv_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         265 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_iscatter_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         294 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         297 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_allgatherv_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount         303 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_alltoall_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         322 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_gather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         325 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_gatherv_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         341 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_scatter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         350 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_allgather_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         353 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_allgatherv_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount         359 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_alltoall_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         375 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_gather_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         378 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_gatherv_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         392 ompi/mca/coll/libnbc/coll_libnbc.h int ompi_coll_libnbc_scatter_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          36 ompi/mca/coll/libnbc/nbc_iallgather.c       (a->sendcount == b->sendcount) &&
sendcount          52 ompi/mca/coll/libnbc/nbc_iallgather.c static int nbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount          92 ompi/mca/coll/libnbc/nbc_iallgather.c     sendcount = recvcount;
sendcount          96 ompi/mca/coll/libnbc/nbc_iallgather.c     res = NBC_Copy (sendbuf, sendcount, sendtype, rbuf, recvcount, recvtype, comm);
sendcount         108 ompi/mca/coll/libnbc/nbc_iallgather.c   search.sendcount = sendcount;
sendcount         125 ompi/mca/coll/libnbc/nbc_iallgather.c       res = NBC_Sched_copy((void *)sendbuf, false, sendcount, sendtype,
sendcount         135 ompi/mca/coll/libnbc/nbc_iallgather.c         res = allgather_sched_linear(rank, p, schedule, sendbuf, sendcount, sendtype,
sendcount         139 ompi/mca/coll/libnbc/nbc_iallgather.c         res = allgather_sched_recursivedoubling(rank, p, schedule, sendbuf, sendcount,
sendcount         159 ompi/mca/coll/libnbc/nbc_iallgather.c     args->sendcount = sendcount;
sendcount         193 ompi/mca/coll/libnbc/nbc_iallgather.c int ompi_coll_libnbc_iallgather(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         197 ompi/mca/coll/libnbc/nbc_iallgather.c     int res = nbc_allgather_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
sendcount         213 ompi/mca/coll/libnbc/nbc_iallgather.c static int nbc_allgather_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         248 ompi/mca/coll/libnbc/nbc_iallgather.c     res = NBC_Sched_send (sendbuf, false, sendcount, sendtype, r, schedule, false);
sendcount         270 ompi/mca/coll/libnbc/nbc_iallgather.c int ompi_coll_libnbc_iallgather_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         273 ompi/mca/coll/libnbc/nbc_iallgather.c     int res = nbc_allgather_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
sendcount         392 ompi/mca/coll/libnbc/nbc_iallgather.c int ompi_coll_libnbc_allgather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         395 ompi/mca/coll/libnbc/nbc_iallgather.c     int res = nbc_allgather_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
sendcount         404 ompi/mca/coll/libnbc/nbc_iallgather.c int ompi_coll_libnbc_allgather_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         407 ompi/mca/coll/libnbc/nbc_iallgather.c     int res = nbc_allgather_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
sendcount          37 ompi/mca/coll/libnbc/nbc_iallgatherv.c static int nbc_allgatherv_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount          60 ompi/mca/coll/libnbc/nbc_iallgatherv.c       sendcount = recvcounts[rank];
sendcount          64 ompi/mca/coll/libnbc/nbc_iallgatherv.c     res = NBC_Copy (sendbuf, sendcount, sendtype, rbuf, recvcounts[rank], recvtype, comm);
sendcount          79 ompi/mca/coll/libnbc/nbc_iallgatherv.c     res = NBC_Sched_copy ((void *)sendbuf, false, sendcount, sendtype,
sendcount         122 ompi/mca/coll/libnbc/nbc_iallgatherv.c int ompi_coll_libnbc_iallgatherv(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount         125 ompi/mca/coll/libnbc/nbc_iallgatherv.c     int res = nbc_allgatherv_init(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype,
sendcount         141 ompi/mca/coll/libnbc/nbc_iallgatherv.c static int nbc_allgatherv_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount         176 ompi/mca/coll/libnbc/nbc_iallgatherv.c   if (sendcount) {
sendcount         178 ompi/mca/coll/libnbc/nbc_iallgatherv.c       res = NBC_Sched_send (sendbuf, false, sendcount, sendtype, r, schedule, false);
sendcount         201 ompi/mca/coll/libnbc/nbc_iallgatherv.c int ompi_coll_libnbc_iallgatherv_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount         204 ompi/mca/coll/libnbc/nbc_iallgatherv.c     int res = nbc_allgatherv_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype,
sendcount         220 ompi/mca/coll/libnbc/nbc_iallgatherv.c int ompi_coll_libnbc_allgatherv_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount         223 ompi/mca/coll/libnbc/nbc_iallgatherv.c     int res = nbc_allgatherv_init(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype,
sendcount         232 ompi/mca/coll/libnbc/nbc_iallgatherv.c int ompi_coll_libnbc_allgatherv_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, const int *recvcounts, const int *displs,
sendcount         235 ompi/mca/coll/libnbc/nbc_iallgatherv.c     int res = nbc_allgatherv_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype,
sendcount          25 ompi/mca/coll/libnbc/nbc_ialltoall.c                                    const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
sendcount          28 ompi/mca/coll/libnbc/nbc_ialltoall.c                                      const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
sendcount          31 ompi/mca/coll/libnbc/nbc_ialltoall.c                                  const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
sendcount          40 ompi/mca/coll/libnbc/nbc_ialltoall.c       (a->sendcount == b->sendcount) &&
sendcount          57 ompi/mca/coll/libnbc/nbc_ialltoall.c static int nbc_alltoall_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount          99 ompi/mca/coll/libnbc/nbc_ialltoall.c   a2asize = sndsize * sendcount * p;
sendcount         103 ompi/mca/coll/libnbc/nbc_ialltoall.c   } else if((p <= 8) && ((a2asize < 1<<17) || (sndsize*sendcount < 1<<12))) {
sendcount         126 ompi/mca/coll/libnbc/nbc_ialltoall.c       datasize = sndext * sendcount;
sendcount         128 ompi/mca/coll/libnbc/nbc_ialltoall.c       res = ompi_datatype_pack_external_size("external32", sendcount, sendtype, &datasize);
sendcount         162 ompi/mca/coll/libnbc/nbc_ialltoall.c       res = ompi_datatype_pack_external ("external32", (char *) sendbuf + (intptr_t)rank * (intptr_t)sendcount * sndext, (intptr_t)(p - rank) * (intptr_t)sendcount, sendtype, tmpbuf,
sendcount         172 ompi/mca/coll/libnbc/nbc_ialltoall.c         res = ompi_datatype_pack_external("external32", sendbuf, (intptr_t)rank * (intptr_t)sendcount, sendtype, (char *) tmpbuf + datasize * (intptr_t)(p - rank),
sendcount         186 ompi/mca/coll/libnbc/nbc_ialltoall.c   search.sendcount = sendcount;
sendcount         204 ompi/mca/coll/libnbc/nbc_ialltoall.c       sbuf = (char *) sendbuf + (MPI_Aint)rank * (MPI_Aint)sendcount * sndext;
sendcount         205 ompi/mca/coll/libnbc/nbc_ialltoall.c       res = NBC_Sched_copy (sbuf, false, sendcount, sendtype,
sendcount         219 ompi/mca/coll/libnbc/nbc_ialltoall.c         res = a2a_sched_linear(rank, p, sndext, rcvext, schedule, sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm);
sendcount         222 ompi/mca/coll/libnbc/nbc_ialltoall.c         res = a2a_sched_diss(rank, p, sndext, rcvext, schedule, sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, tmpbuf);
sendcount         225 ompi/mca/coll/libnbc/nbc_ialltoall.c         res = a2a_sched_pairwise(rank, p, sndext, rcvext, schedule, sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm);
sendcount         247 ompi/mca/coll/libnbc/nbc_ialltoall.c       args->sendcount = sendcount;
sendcount         284 ompi/mca/coll/libnbc/nbc_ialltoall.c int ompi_coll_libnbc_ialltoall(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         287 ompi/mca/coll/libnbc/nbc_ialltoall.c     int res = nbc_alltoall_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
sendcount         303 ompi/mca/coll/libnbc/nbc_ialltoall.c static int nbc_alltoall_inter_init (const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         334 ompi/mca/coll/libnbc/nbc_ialltoall.c     sbuf = (char *) sendbuf + i * sendcount * sndext;
sendcount         335 ompi/mca/coll/libnbc/nbc_ialltoall.c     res = NBC_Sched_send (sbuf, false, sendcount, sendtype, i, schedule, false);
sendcount         368 ompi/mca/coll/libnbc/nbc_ialltoall.c int ompi_coll_libnbc_ialltoall_inter (const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         371 ompi/mca/coll/libnbc/nbc_ialltoall.c     int res = nbc_alltoall_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
sendcount         388 ompi/mca/coll/libnbc/nbc_ialltoall.c                                      const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         406 ompi/mca/coll/libnbc/nbc_ialltoall.c     char *sbuf = (char *) sendbuf + sndpeer * sendcount * sndext;
sendcount         407 ompi/mca/coll/libnbc/nbc_ialltoall.c     res = NBC_Sched_send (sbuf, false, sendcount, sendtype, sndpeer, schedule, true);
sendcount         417 ompi/mca/coll/libnbc/nbc_ialltoall.c                                    const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         433 ompi/mca/coll/libnbc/nbc_ialltoall.c     char *sbuf = (char *) sendbuf + (intptr_t)r * (intptr_t)sendcount * sndext;
sendcount         434 ompi/mca/coll/libnbc/nbc_ialltoall.c     res = NBC_Sched_send (sbuf, false, sendcount, sendtype, r, schedule, false);
sendcount         444 ompi/mca/coll/libnbc/nbc_ialltoall.c                                  const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         455 ompi/mca/coll/libnbc/nbc_ialltoall.c     datasize = sndext*sendcount;
sendcount         457 ompi/mca/coll/libnbc/nbc_ialltoall.c     res = ompi_datatype_pack_external_size("external32", sendcount, sendtype, &datasize);
sendcount         594 ompi/mca/coll/libnbc/nbc_ialltoall.c int ompi_coll_libnbc_alltoall_init (const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         597 ompi/mca/coll/libnbc/nbc_ialltoall.c     int res = nbc_alltoall_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
sendcount         606 ompi/mca/coll/libnbc/nbc_ialltoall.c int ompi_coll_libnbc_alltoall_inter_init (const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
sendcount         609 ompi/mca/coll/libnbc/nbc_ialltoall.c     int res = nbc_alltoall_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype,
sendcount          30 ompi/mca/coll/libnbc/nbc_igather.c       (a->sendcount == b->sendcount) &&
sendcount          47 ompi/mca/coll/libnbc/nbc_igather.c static int nbc_gather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
sendcount          72 ompi/mca/coll/libnbc/nbc_igather.c     sendcount = recvcount;
sendcount          81 ompi/mca/coll/libnbc/nbc_igather.c   search.sendcount = sendcount;
sendcount          99 ompi/mca/coll/libnbc/nbc_igather.c       res = NBC_Sched_send(sendbuf, false, sendcount, sendtype, root, schedule, false);
sendcount         110 ompi/mca/coll/libnbc/nbc_igather.c             res = NBC_Sched_copy ((void *)sendbuf, false, sendcount, sendtype,
sendcount         139 ompi/mca/coll/libnbc/nbc_igather.c       args->sendcount = sendcount;
sendcount         176 ompi/mca/coll/libnbc/nbc_igather.c int ompi_coll_libnbc_igather(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
sendcount         180 ompi/mca/coll/libnbc/nbc_igather.c     int res = nbc_gather_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
sendcount         196 ompi/mca/coll/libnbc/nbc_igather.c static int nbc_gather_inter_init (const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
sendcount         224 ompi/mca/coll/libnbc/nbc_igather.c         res = NBC_Sched_send (sendbuf, false, sendcount, sendtype, root, schedule, false);
sendcount         256 ompi/mca/coll/libnbc/nbc_igather.c int ompi_coll_libnbc_igather_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
sendcount         260 ompi/mca/coll/libnbc/nbc_igather.c     int res = nbc_gather_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
sendcount         276 ompi/mca/coll/libnbc/nbc_igather.c int ompi_coll_libnbc_gather_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
sendcount         280 ompi/mca/coll/libnbc/nbc_igather.c     int res = nbc_gather_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
sendcount         289 ompi/mca/coll/libnbc/nbc_igather.c int ompi_coll_libnbc_gather_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
sendcount         293 ompi/mca/coll/libnbc/nbc_igather.c     int res = nbc_gather_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
sendcount          32 ompi/mca/coll/libnbc/nbc_igatherv.c static int nbc_gatherv_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          64 ompi/mca/coll/libnbc/nbc_igatherv.c     res = NBC_Sched_send (sendbuf, false, sendcount, sendtype, root, schedule, false);
sendcount          75 ompi/mca/coll/libnbc/nbc_igatherv.c           res = NBC_Sched_copy ((void *)sendbuf, false, sendcount, sendtype,
sendcount         108 ompi/mca/coll/libnbc/nbc_igatherv.c int ompi_coll_libnbc_igatherv(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         112 ompi/mca/coll/libnbc/nbc_igatherv.c     int res = nbc_gatherv_init(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root,
sendcount         128 ompi/mca/coll/libnbc/nbc_igatherv.c static int nbc_gatherv_inter_init (const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         156 ompi/mca/coll/libnbc/nbc_igatherv.c     res = NBC_Sched_send (sendbuf, false, sendcount, sendtype, root, schedule, false);
sendcount         188 ompi/mca/coll/libnbc/nbc_igatherv.c int ompi_coll_libnbc_igatherv_inter(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         192 ompi/mca/coll/libnbc/nbc_igatherv.c     int res = nbc_gatherv_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root,
sendcount         208 ompi/mca/coll/libnbc/nbc_igatherv.c int ompi_coll_libnbc_gatherv_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         212 ompi/mca/coll/libnbc/nbc_igatherv.c     int res = nbc_gatherv_init(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root,
sendcount         221 ompi/mca/coll/libnbc/nbc_igatherv.c int ompi_coll_libnbc_gatherv_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         225 ompi/mca/coll/libnbc/nbc_igatherv.c     int res = nbc_gatherv_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root,
sendcount         175 ompi/mca/coll/libnbc/nbc_internal.h   int sendcount;
sendcount         186 ompi/mca/coll/libnbc/nbc_internal.h   int sendcount;
sendcount         216 ompi/mca/coll/libnbc/nbc_internal.h   int sendcount;
sendcount         249 ompi/mca/coll/libnbc/nbc_internal.h   int sendcount;
sendcount          30 ompi/mca/coll/libnbc/nbc_iscatter.c         (a->sendcount == b->sendcount) &&
sendcount          48 ompi/mca/coll/libnbc/nbc_iscatter.c static int nbc_scatter_init (const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          78 ompi/mca/coll/libnbc/nbc_iscatter.c   search.sendcount=sendcount;
sendcount         102 ompi/mca/coll/libnbc/nbc_iscatter.c         sbuf = (char *) sendbuf + i * sendcount * sndext;
sendcount         106 ompi/mca/coll/libnbc/nbc_iscatter.c             res = NBC_Sched_copy (sbuf, false, sendcount, sendtype,
sendcount         115 ompi/mca/coll/libnbc/nbc_iscatter.c           res = NBC_Sched_send (sbuf, false, sendcount, sendtype, i, schedule, false);
sendcount         134 ompi/mca/coll/libnbc/nbc_iscatter.c       args->sendcount = sendcount;
sendcount         171 ompi/mca/coll/libnbc/nbc_iscatter.c int ompi_coll_libnbc_iscatter (const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         175 ompi/mca/coll/libnbc/nbc_iscatter.c     int res = nbc_scatter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
sendcount         190 ompi/mca/coll/libnbc/nbc_iscatter.c static int nbc_scatter_inter_init (const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         225 ompi/mca/coll/libnbc/nbc_iscatter.c             sbuf = ((char *)sendbuf) + (i * sendcount * sndext);
sendcount         227 ompi/mca/coll/libnbc/nbc_iscatter.c             res = NBC_Sched_send(sbuf, false, sendcount, sendtype, i, schedule, false);
sendcount         250 ompi/mca/coll/libnbc/nbc_iscatter.c int ompi_coll_libnbc_iscatter_inter (const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         254 ompi/mca/coll/libnbc/nbc_iscatter.c     int res = nbc_scatter_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
sendcount         269 ompi/mca/coll/libnbc/nbc_iscatter.c int ompi_coll_libnbc_scatter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         273 ompi/mca/coll/libnbc/nbc_iscatter.c     int res = nbc_scatter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
sendcount         282 ompi/mca/coll/libnbc/nbc_iscatter.c int ompi_coll_libnbc_scatter_inter_init(const void* sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount         286 ompi/mca/coll/libnbc/nbc_iscatter.c     int res = nbc_scatter_inter_init(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root,
sendcount          47 ompi/mpi/c/allgather.c int MPI_Allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          71 ompi/mpi/c/allgather.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          94 ompi/mpi/c/allgather.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         105 ompi/mpi/c/allgather.c        if ((MPI_IN_PLACE != sendbuf && 0 == sendcount) ||
sendcount         116 ompi/mpi/c/allgather.c 	if ( 0 == sendcount && 0 == recvcount ) {
sendcount         125 ompi/mpi/c/allgather.c     err = comm->c_coll->coll_allgather(sendbuf, sendcount, sendtype,
sendcount          47 ompi/mpi/c/allgatherv.c int MPI_Allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          79 ompi/mpi/c/allgatherv.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         101 ompi/mpi/c/allgatherv.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         146 ompi/mpi/c/allgatherv.c     err = comm->c_coll->coll_allgatherv(sendbuf, sendcount, sendtype,
sendcount          48 ompi/mpi/c/alltoall.c int MPI_Alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          61 ompi/mpi/c/alltoall.c             memchecker_call(&opal_memchecker_base_isdefined, (void *)sendbuf, sendcount, sendtype);
sendcount          83 ompi/mpi/c/alltoall.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount          94 ompi/mpi/c/alltoall.c             if ((sendtype_size*sendcount) != (recvtype_size*recvcount)) {
sendcount         110 ompi/mpi/c/alltoall.c     err = comm->c_coll->coll_alltoall(sendbuf, sendcount, sendtype,
sendcount          47 ompi/mpi/c/gather.c int MPI_Gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          72 ompi/mpi/c/gather.c                     memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          81 ompi/mpi/c/gather.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          91 ompi/mpi/c/gather.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         118 ompi/mpi/c/gather.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         150 ompi/mpi/c/gather.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         172 ompi/mpi/c/gather.c     if ((0 == sendcount && MPI_ROOT != root &&
sendcount         184 ompi/mpi/c/gather.c     err = comm->c_coll->coll_gather(sendbuf, sendcount, sendtype, recvbuf,
sendcount          45 ompi/mpi/c/gatherv.c int MPI_Gatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          71 ompi/mpi/c/gatherv.c                     memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          84 ompi/mpi/c/gatherv.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          98 ompi/mpi/c/gatherv.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         123 ompi/mpi/c/gatherv.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         164 ompi/mpi/c/gatherv.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         196 ompi/mpi/c/gatherv.c     err = comm->c_coll->coll_gatherv(sendbuf, sendcount, sendtype, recvbuf,
sendcount          47 ompi/mpi/c/iallgather.c int MPI_Iallgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          71 ompi/mpi/c/iallgather.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          94 ompi/mpi/c/iallgather.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         102 ompi/mpi/c/iallgather.c     err = comm->c_coll->coll_iallgather(sendbuf, sendcount, sendtype,
sendcount          47 ompi/mpi/c/iallgatherv.c int MPI_Iallgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          79 ompi/mpi/c/iallgatherv.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         101 ompi/mpi/c/iallgatherv.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         125 ompi/mpi/c/iallgatherv.c     err = comm->c_coll->coll_iallgatherv(sendbuf, sendcount, sendtype,
sendcount          47 ompi/mpi/c/ialltoall.c int MPI_Ialltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          60 ompi/mpi/c/ialltoall.c             memchecker_call(&opal_memchecker_base_isdefined, (void *)sendbuf, sendcount, sendtype);
sendcount          82 ompi/mpi/c/ialltoall.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount          92 ompi/mpi/c/ialltoall.c             if ((sendtype_size*sendcount) != (recvtype_size*recvcount)) {
sendcount         101 ompi/mpi/c/ialltoall.c     err = comm->c_coll->coll_ialltoall(sendbuf, sendcount, sendtype,
sendcount          47 ompi/mpi/c/igather.c int MPI_Igather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          72 ompi/mpi/c/igather.c                     memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          81 ompi/mpi/c/igather.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          91 ompi/mpi/c/igather.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         118 ompi/mpi/c/igather.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         150 ompi/mpi/c/igather.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         173 ompi/mpi/c/igather.c     err = comm->c_coll->coll_igather(sendbuf, sendcount, sendtype, recvbuf,
sendcount          45 ompi/mpi/c/igatherv.c int MPI_Igatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          71 ompi/mpi/c/igatherv.c                     memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          84 ompi/mpi/c/igatherv.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          98 ompi/mpi/c/igatherv.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         123 ompi/mpi/c/igatherv.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         164 ompi/mpi/c/igatherv.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         196 ompi/mpi/c/igatherv.c     err = comm->c_coll->coll_igatherv(sendbuf, sendcount, sendtype, recvbuf,
sendcount          50 ompi/mpi/c/ineighbor_allgather.c int MPI_Ineighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          70 ompi/mpi/c/ineighbor_allgather.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          94 ompi/mpi/c/ineighbor_allgather.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         124 ompi/mpi/c/ineighbor_allgather.c     err = comm->c_coll->coll_ineighbor_allgather(sendbuf, sendcount, sendtype, recvbuf,
sendcount          50 ompi/mpi/c/ineighbor_allgatherv.c int MPI_Ineighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          78 ompi/mpi/c/ineighbor_allgatherv.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         101 ompi/mpi/c/ineighbor_allgatherv.c         OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         146 ompi/mpi/c/ineighbor_allgatherv.c     err = comm->c_coll->coll_ineighbor_allgatherv(sendbuf, sendcount, sendtype,
sendcount          50 ompi/mpi/c/ineighbor_alltoall.c int MPI_Ineighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          63 ompi/mpi/c/ineighbor_alltoall.c             memchecker_call(&opal_memchecker_base_isdefined, (void *)sendbuf, sendcount, sendtype);
sendcount          86 ompi/mpi/c/ineighbor_alltoall.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount          94 ompi/mpi/c/ineighbor_alltoall.c         if ((sendtype_size*sendcount) != (recvtype_size*recvcount)) {
sendcount         124 ompi/mpi/c/ineighbor_alltoall.c     err = comm->c_coll->coll_ineighbor_alltoall(sendbuf, sendcount, sendtype,
sendcount          47 ompi/mpi/c/iscatter.c int MPI_Iscatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          61 ompi/mpi/c/iscatter.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          76 ompi/mpi/c/iscatter.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         119 ompi/mpi/c/iscatter.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         147 ompi/mpi/c/iscatter.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         156 ompi/mpi/c/iscatter.c     err = comm->c_coll->coll_iscatter(sendbuf, sendcount, sendtype, recvbuf,
sendcount          50 ompi/mpi/c/neighbor_allgather.c int MPI_Neighbor_allgather(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          70 ompi/mpi/c/neighbor_allgather.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          94 ompi/mpi/c/neighbor_allgather.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         124 ompi/mpi/c/neighbor_allgather.c     if ((0 == sendcount) || (0 == recvcount)) {
sendcount         131 ompi/mpi/c/neighbor_allgather.c     err = comm->c_coll->coll_neighbor_allgather(sendbuf, sendcount, sendtype,
sendcount          51 ompi/mpi/c/neighbor_allgatherv.c int MPI_Neighbor_allgatherv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          79 ompi/mpi/c/neighbor_allgatherv.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         102 ompi/mpi/c/neighbor_allgatherv.c         OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         147 ompi/mpi/c/neighbor_allgatherv.c     err = comm->c_coll->coll_neighbor_allgatherv(sendbuf, sendcount, sendtype,
sendcount          49 ompi/mpi/c/neighbor_alltoall.c int MPI_Neighbor_alltoall(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          62 ompi/mpi/c/neighbor_alltoall.c             memchecker_call(&opal_memchecker_base_isdefined, (void *)sendbuf, sendcount, sendtype);
sendcount          85 ompi/mpi/c/neighbor_alltoall.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount          93 ompi/mpi/c/neighbor_alltoall.c         if ((sendtype_size*sendcount) != (recvtype_size*recvcount)) {
sendcount         124 ompi/mpi/c/neighbor_alltoall.c     if (((0 == sendcount) || (0 == sendtype_size)) &&
sendcount         132 ompi/mpi/c/neighbor_alltoall.c     err = comm->c_coll->coll_neighbor_alltoall(sendbuf, sendcount, sendtype, recvbuf,
sendcount          47 ompi/mpi/c/scatter.c int MPI_Scatter(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          61 ompi/mpi/c/scatter.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          76 ompi/mpi/c/scatter.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         119 ompi/mpi/c/scatter.c               OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         147 ompi/mpi/c/scatter.c               OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         159 ompi/mpi/c/scatter.c          0 == sendcount) ||
sendcount         160 ompi/mpi/c/scatter.c         (0 == sendcount && (MPI_ROOT == root || MPI_PROC_NULL == root))) {
sendcount         167 ompi/mpi/c/scatter.c     err = comm->c_coll->coll_scatter(sendbuf, sendcount, sendtype, recvbuf,
sendcount          44 ompi/mpi/c/sendrecv.c int MPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          57 ompi/mpi/c/sendrecv.c         memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          63 ompi/mpi/c/sendrecv.c         OMPI_CHECK_DATATYPE_FOR_SEND(rc, sendtype, sendcount);
sendcount          65 ompi/mpi/c/sendrecv.c         OMPI_CHECK_USER_BUFFER(rc, sendbuf, sendtype, sendcount);
sendcount          91 ompi/mpi/c/sendrecv.c         rc = MCA_PML_CALL(send(sendbuf, sendcount, sendtype, dest,
sendcount         228 ompi/mpi/cxx/comm.h   virtual void Sendrecv(const void *sendbuf, int sendcount,
sendcount         234 ompi/mpi/cxx/comm.h   virtual void Sendrecv(const void *sendbuf, int sendcount,
sendcount         285 ompi/mpi/cxx/comm.h   Gather(const void *sendbuf, int sendcount,
sendcount         291 ompi/mpi/cxx/comm.h   Gatherv(const void *sendbuf, int sendcount,
sendcount         297 ompi/mpi/cxx/comm.h   Scatter(const void *sendbuf, int sendcount,
sendcount         309 ompi/mpi/cxx/comm.h   Allgather(const void *sendbuf, int sendcount,
sendcount         314 ompi/mpi/cxx/comm.h   Allgatherv(const void *sendbuf, int sendcount,
sendcount         320 ompi/mpi/cxx/comm.h   Alltoall(const void *sendbuf, int sendcount,
sendcount         202 ompi/mpi/cxx/comm_inln.h MPI::Comm::Sendrecv(const void *sendbuf, int sendcount,
sendcount         208 ompi/mpi/cxx/comm_inln.h   (void)MPI_Sendrecv(const_cast<void *>(sendbuf), sendcount,
sendcount         216 ompi/mpi/cxx/comm_inln.h MPI::Comm::Sendrecv(const void *sendbuf, int sendcount,
sendcount         222 ompi/mpi/cxx/comm_inln.h   (void)MPI_Sendrecv(const_cast<void *>(sendbuf), sendcount,
sendcount         321 ompi/mpi/cxx/comm_inln.h MPI::Comm::Gather(const void *sendbuf, int sendcount,
sendcount         326 ompi/mpi/cxx/comm_inln.h     (void)MPI_Gather(const_cast<void *>(sendbuf), sendcount, sendtype,
sendcount         331 ompi/mpi/cxx/comm_inln.h MPI::Comm::Gatherv(const void *sendbuf, int sendcount,
sendcount         336 ompi/mpi/cxx/comm_inln.h     (void)MPI_Gatherv(const_cast<void *>(sendbuf), sendcount,  sendtype,
sendcount         343 ompi/mpi/cxx/comm_inln.h MPI::Comm::Scatter(const void *sendbuf, int sendcount,
sendcount         348 ompi/mpi/cxx/comm_inln.h     (void)MPI_Scatter(const_cast<void *>(sendbuf), sendcount, sendtype,
sendcount         366 ompi/mpi/cxx/comm_inln.h MPI::Comm::Allgather(const void *sendbuf, int sendcount,
sendcount         370 ompi/mpi/cxx/comm_inln.h     (void)MPI_Allgather(const_cast<void *>(sendbuf), sendcount,
sendcount         376 ompi/mpi/cxx/comm_inln.h MPI::Comm::Allgatherv(const void *sendbuf, int sendcount,
sendcount         381 ompi/mpi/cxx/comm_inln.h     (void)MPI_Allgatherv(const_cast<void *>(sendbuf), sendcount,
sendcount         389 ompi/mpi/cxx/comm_inln.h MPI::Comm::Alltoall(const void *sendbuf, int sendcount,
sendcount         393 ompi/mpi/cxx/comm_inln.h     (void)MPI_Alltoall(const_cast<void *>(sendbuf), sendcount,
sendcount          42 ompi/mpi/fortran/mpif-h/allgather_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/allgather_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/allgather_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/allgather_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/allgather_f.c void ompi_allgather_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          87 ompi/mpi/fortran/mpif-h/allgather_f.c                             OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/allgatherv_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/allgatherv_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/allgatherv_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/allgatherv_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/allgatherv_f.c void ompi_allgatherv_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          93 ompi/mpi/fortran/mpif-h/allgatherv_f.c                              OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/alltoall_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/alltoall_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/alltoall_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/alltoall_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/alltoall_f.c void ompi_alltoall_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          87 ompi/mpi/fortran/mpif-h/alltoall_f.c                           OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/gather_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/gather_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/gather_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/gather_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/gather_f.c void ompi_gather_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          86 ompi/mpi/fortran/mpif-h/gather_f.c     c_ierr = PMPI_Gather(sendbuf, OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/gatherv_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/gatherv_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root, comm, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/gatherv_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/gatherv_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root, comm, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/gatherv_f.c void ompi_gatherv_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          93 ompi/mpi/fortran/mpif-h/gatherv_f.c     c_ierr = PMPI_Gatherv(sendbuf, OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/iallgather_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/iallgather_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/iallgather_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/iallgather_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/iallgather_f.c void ompi_iallgather_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          88 ompi/mpi/fortran/mpif-h/iallgather_f.c                              OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/iallgatherv_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/iallgatherv_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, request, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/iallgatherv_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/iallgatherv_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, request, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/iallgatherv_f.c void ompi_iallgatherv_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          95 ompi/mpi/fortran/mpif-h/iallgatherv_f.c                               OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/ialltoall_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/ialltoall_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/ialltoall_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/ialltoall_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/ialltoall_f.c void ompi_ialltoall_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          88 ompi/mpi/fortran/mpif-h/ialltoall_f.c                            OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/igather_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/igather_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, request, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/igather_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/igather_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, request, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/igather_f.c void ompi_igather_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          88 ompi/mpi/fortran/mpif-h/igather_f.c     c_ierr = PMPI_Igather(sendbuf, OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/igatherv_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/igatherv_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root, comm, request, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/igatherv_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *request,MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/igatherv_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root, comm, request, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/igatherv_f.c void ompi_igatherv_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          94 ompi/mpi/fortran/mpif-h/igatherv_f.c     c_ierr = PMPI_Igatherv(sendbuf, OMPI_FINT_2_INT(*sendcount),
sendcount          45 ompi/mpi/fortran/mpif-h/ineighbor_allgather_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          46 ompi/mpi/fortran/mpif-h/ineighbor_allgather_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request, ierr) )
sendcount          65 ompi/mpi/fortran/mpif-h/ineighbor_allgather_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          66 ompi/mpi/fortran/mpif-h/ineighbor_allgather_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request, ierr) )
sendcount          73 ompi/mpi/fortran/mpif-h/ineighbor_allgather_f.c void ompi_ineighbor_allgather_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          91 ompi/mpi/fortran/mpif-h/ineighbor_allgather_f.c                                       OMPI_FINT_2_INT(*sendcount),
sendcount          45 ompi/mpi/fortran/mpif-h/ineighbor_allgatherv_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          46 ompi/mpi/fortran/mpif-h/ineighbor_allgatherv_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, request, ierr) )
sendcount          65 ompi/mpi/fortran/mpif-h/ineighbor_allgatherv_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          66 ompi/mpi/fortran/mpif-h/ineighbor_allgatherv_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, request, ierr) )
sendcount          73 ompi/mpi/fortran/mpif-h/ineighbor_allgatherv_f.c void ompi_ineighbor_allgatherv_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          98 ompi/mpi/fortran/mpif-h/ineighbor_allgatherv_f.c                                        OMPI_FINT_2_INT(*sendcount),
sendcount          45 ompi/mpi/fortran/mpif-h/ineighbor_alltoall_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          46 ompi/mpi/fortran/mpif-h/ineighbor_alltoall_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request, ierr) )
sendcount          65 ompi/mpi/fortran/mpif-h/ineighbor_alltoall_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          66 ompi/mpi/fortran/mpif-h/ineighbor_alltoall_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request, ierr) )
sendcount          73 ompi/mpi/fortran/mpif-h/ineighbor_alltoall_f.c void ompi_ineighbor_alltoall_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          91 ompi/mpi/fortran/mpif-h/ineighbor_alltoall_f.c                                     OMPI_FINT_2_INT(*sendcount),
sendcount          43 ompi/mpi/fortran/mpif-h/iscatter_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          44 ompi/mpi/fortran/mpif-h/iscatter_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, request, ierr) )
sendcount          63 ompi/mpi/fortran/mpif-h/iscatter_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr),
sendcount          64 ompi/mpi/fortran/mpif-h/iscatter_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, request, ierr) )
sendcount          71 ompi/mpi/fortran/mpif-h/iscatter_f.c void ompi_iscatter_f(char *sendbuf, MPI_Fint *sendcount,
sendcount          89 ompi/mpi/fortran/mpif-h/iscatter_f.c     c_ierr = PMPI_Iscatter(sendbuf,OMPI_FINT_2_INT(*sendcount),
sendcount          45 ompi/mpi/fortran/mpif-h/neighbor_allgather_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          46 ompi/mpi/fortran/mpif-h/neighbor_allgather_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, ierr) )
sendcount          65 ompi/mpi/fortran/mpif-h/neighbor_allgather_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          66 ompi/mpi/fortran/mpif-h/neighbor_allgather_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, ierr) )
sendcount          73 ompi/mpi/fortran/mpif-h/neighbor_allgather_f.c void ompi_neighbor_allgather_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          90 ompi/mpi/fortran/mpif-h/neighbor_allgather_f.c                                      OMPI_FINT_2_INT(*sendcount),
sendcount          45 ompi/mpi/fortran/mpif-h/neighbor_allgatherv_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          46 ompi/mpi/fortran/mpif-h/neighbor_allgatherv_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, ierr) )
sendcount          65 ompi/mpi/fortran/mpif-h/neighbor_allgatherv_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          66 ompi/mpi/fortran/mpif-h/neighbor_allgatherv_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, ierr) )
sendcount          73 ompi/mpi/fortran/mpif-h/neighbor_allgatherv_f.c void ompi_neighbor_allgatherv_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          96 ompi/mpi/fortran/mpif-h/neighbor_allgatherv_f.c                                       OMPI_FINT_2_INT(*sendcount),
sendcount          45 ompi/mpi/fortran/mpif-h/neighbor_alltoall_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          46 ompi/mpi/fortran/mpif-h/neighbor_alltoall_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, ierr) )
sendcount          65 ompi/mpi/fortran/mpif-h/neighbor_alltoall_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          66 ompi/mpi/fortran/mpif-h/neighbor_alltoall_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, ierr) )
sendcount          73 ompi/mpi/fortran/mpif-h/neighbor_alltoall_f.c void ompi_neighbor_alltoall_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          90 ompi/mpi/fortran/mpif-h/neighbor_alltoall_f.c                                    OMPI_FINT_2_INT(*sendcount),
sendcount          92 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Allgather, mpi_allgather, MPI_ALLGATHER, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr));
sendcount          93 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Allgatherv, mpi_allgatherv, MPI_ALLGATHERV, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr));
sendcount          98 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Alltoall, mpi_alltoall, MPI_ALLTOALL, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr));
sendcount         232 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Gather, mpi_gather, MPI_GATHER, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr));
sendcount         233 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Gatherv, mpi_gatherv, MPI_GATHERV, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr));
sendcount         263 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Iallgather, mpi_iallgather, MPI_IALLGATHER, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr));
sendcount         264 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Iallgatherv, mpi_iallgatherv, MPI_IALLGATHERV, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr));
sendcount         266 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Ialltoall, mpi_ialltoall, MPI_IALLTOALL, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr));
sendcount         273 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Igather, mpi_igather, MPI_IGATHER, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr));
sendcount         274 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Igatherv, mpi_igatherv, MPI_IGATHERV, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr));
sendcount         277 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Ineighbor_allgather, mpi_ineighbor_allgather, MPI_INEIGHBOR_ALLGATHER, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr));
sendcount         278 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Ineighbor_allgatherv, mpi_ineighbor_allgatherv, MPI_INEIGHBOR_ALLGATHERV, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr));
sendcount         279 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Ineighbor_alltoall, mpi_ineighbor_alltoall, MPI_INEIGHBOR_ALLTOALL, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr));
sendcount         286 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Iscatter, mpi_iscatter, MPI_ISCATTER, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *request, MPI_Fint *ierr));
sendcount         313 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Neighbor_allgather, mpi_neighbor_allgather, MPI_NEIGHBOR_ALLGATHER, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr));
sendcount         314 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Neighbor_allgatherv, mpi_neighbor_allgatherv, MPI_NEIGHBOR_ALLGATHERV, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr));
sendcount         315 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Neighbor_alltoall, mpi_neighbor_alltoall, MPI_NEIGHBOR_ALLTOALL, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *ierr));
sendcount         347 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Scatter, mpi_scatter, MPI_SCATTER, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr));
sendcount         351 ompi/mpi/fortran/mpif-h/prototypes_mpi.h PN2(void, MPI_Sendrecv, mpi_sendrecv, MPI_SENDRECV, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, MPI_Fint *dest, MPI_Fint *sendtag, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *source, MPI_Fint *recvtag, MPI_Fint *comm, MPI_Fint *status, MPI_Fint *ierr));
sendcount          42 ompi/mpi/fortran/mpif-h/scatter_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/scatter_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/scatter_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/scatter_f.c                            (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/scatter_f.c void ompi_scatter_f(char *sendbuf, MPI_Fint *sendcount,
sendcount          86 ompi/mpi/fortran/mpif-h/scatter_f.c     c_ierr = PMPI_Scatter(sendbuf,OMPI_FINT_2_INT(*sendcount),
sendcount          42 ompi/mpi/fortran/mpif-h/sendrecv_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, MPI_Fint *dest, MPI_Fint *sendtag, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *source, MPI_Fint *recvtag, MPI_Fint *comm, MPI_Fint *status, MPI_Fint *ierr),
sendcount          43 ompi/mpi/fortran/mpif-h/sendrecv_f.c                            (sendbuf, sendcount, sendtype, dest, sendtag, recvbuf, recvcount, recvtype, source, recvtag, comm, status, ierr) )
sendcount          62 ompi/mpi/fortran/mpif-h/sendrecv_f.c                            (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, MPI_Fint *dest, MPI_Fint *sendtag, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *source, MPI_Fint *recvtag, MPI_Fint *comm, MPI_Fint *status, MPI_Fint *ierr),
sendcount          63 ompi/mpi/fortran/mpif-h/sendrecv_f.c                            (sendbuf, sendcount, sendtype, dest, sendtag, recvbuf, recvcount, recvtype, source, recvtag, comm, status, ierr) )
sendcount          70 ompi/mpi/fortran/mpif-h/sendrecv_f.c void ompi_sendrecv_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          84 ompi/mpi/fortran/mpif-h/sendrecv_f.c    c_ierr = PMPI_Sendrecv(OMPI_F2C_BOTTOM(sendbuf), OMPI_FINT_2_INT(*sendcount),
sendcount         350 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_sendrecv_f(sendbuf,sendcount,sendtype,dest,sendtag,recvbuf, &
sendcount         357 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, dest, sendtag, recvcount, source, recvtag
sendcount         801 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_allgather_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount         807 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount
sendcount         814 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_iallgather_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount         820 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount
sendcount         828 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_allgatherv_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount         834 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount
sendcount         842 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_iallgatherv_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount         848 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount
sendcount         882 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_alltoall_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount         888 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount
sendcount         895 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_ialltoall_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount         901 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount
sendcount        1024 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_gather_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount        1030 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount, root
sendcount        1037 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_igather_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount        1043 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount, root
sendcount        1051 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_gatherv_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount        1057 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, root
sendcount        1065 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_igatherv_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount        1071 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, root
sendcount        1202 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_scatter_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount        1208 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount, root
sendcount        1215 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_iscatter_f(sendbuf,sendcount,sendtype,recvbuf, &
sendcount        1221 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount, root
sendcount        3364 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_neighbor_allgather_f(sendbuf,sendcount,sendtype,recvbuf,recvcount,recvtype, &
sendcount        3371 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount
sendcount        3377 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_ineighbor_allgather_f(sendbuf,sendcount,sendtype,recvbuf,recvcount,recvtype, &
sendcount        3384 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount
sendcount        3391 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_neighbor_allgatherv_f(sendbuf,sendcount,sendtype,recvbuf,recvcounts,displs, &
sendcount        3398 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount
sendcount        3405 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_ineighbor_allgatherv_f(sendbuf,sendcount,sendtype,recvbuf,recvcounts,displs, &
sendcount        3412 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount
sendcount        3420 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_neighbor_alltoall_f(sendbuf,sendcount,sendtype,recvbuf,recvcount,recvtype, &
sendcount        3427 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount
sendcount        3433 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h subroutine ompi_ineighbor_alltoall_f(sendbuf,sendcount,sendtype,recvbuf,recvcount,recvtype, &
sendcount        3440 ompi/mpi/fortran/use-mpi-f08/bindings/mpi-f-interfaces-bind.h    INTEGER, INTENT(IN) :: sendcount, recvcount
sendcount         445 ompi/mpi/java/java/Comm.java 			Object sendbuf, int sendcount, Datatype sendtype, int dest,   int sendtag,
sendcount         471 ompi/mpi/java/java/Comm.java 		sendRecv(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        1312 ompi/mpi/java/java/Comm.java 			Object sendbuf, int sendcount, Datatype sendtype,
sendcount        1336 ompi/mpi/java/java/Comm.java 		gather(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        1392 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int sendcount, Datatype sendtype,
sendcount        1398 ompi/mpi/java/java/Comm.java 		Request req = new Request(iGather(handle, sendbuf, sendcount, sendtype.handle,
sendcount        1430 ompi/mpi/java/java/Comm.java 			long comm, Buffer sendbuf, int sendcount, long sendtype,
sendcount        1448 ompi/mpi/java/java/Comm.java 	public final void gatherv(Object sendbuf, int sendcount, Datatype sendtype,
sendcount        1473 ompi/mpi/java/java/Comm.java 		gatherv(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        1522 ompi/mpi/java/java/Comm.java 	public final void gatherv(Object sendbuf, int sendcount,
sendcount        1536 ompi/mpi/java/java/Comm.java 		gatherv(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        1564 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int sendcount, Datatype sendtype, Buffer recvbuf,
sendcount        1571 ompi/mpi/java/java/Comm.java 				handle, sendbuf, sendcount, sendtype.handle,
sendcount        1616 ompi/mpi/java/java/Comm.java 	public final Request iGatherv(Buffer sendbuf, int sendcount,
sendcount        1622 ompi/mpi/java/java/Comm.java 		Request req = new Request(iGatherv(handle, sendbuf, sendcount, sendtype.handle,
sendcount        1629 ompi/mpi/java/java/Comm.java 			long handle, Buffer sendbuf, int sendcount, long sendtype,
sendcount        1647 ompi/mpi/java/java/Comm.java 			Object sendbuf, int sendcount, Datatype sendtype,
sendcount        1671 ompi/mpi/java/java/Comm.java 		scatter(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        1726 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int sendcount, Datatype sendtype,
sendcount        1732 ompi/mpi/java/java/Comm.java 		Request req = new Request(iScatter(handle, sendbuf, sendcount, sendtype.handle,
sendcount        1764 ompi/mpi/java/java/Comm.java 			long comm, Buffer sendbuf, int sendcount, long sendtype,
sendcount        1782 ompi/mpi/java/java/Comm.java 			Object sendbuf, int[] sendcount, int[] displs, Datatype sendtype,
sendcount        1806 ompi/mpi/java/java/Comm.java 		scatterv(handle, sendbuf, sdb, sendoff, sendcount, displs,
sendcount        1824 ompi/mpi/java/java/Comm.java 	public final void scatterv(Object sendbuf, int[] sendcount, int[] displs,
sendcount        1838 ompi/mpi/java/java/Comm.java 		scatterv(handle, sendbuf, sdb, sendoff, sendcount, displs,
sendcount        1895 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int[] sendcount, int[] displs,  Datatype sendtype,
sendcount        1902 ompi/mpi/java/java/Comm.java 				handle, sendbuf, sendcount, displs, sendtype.handle,
sendcount        1922 ompi/mpi/java/java/Comm.java 	public final Request iScatterv(Buffer sendbuf, int[] sendcount, int[] displs,
sendcount        1928 ompi/mpi/java/java/Comm.java 		Request req = new Request(iScatterv(handle, sendbuf, sendcount, displs,
sendcount        1959 ompi/mpi/java/java/Comm.java 			long comm, Buffer sendbuf, int[] sendcount, int[] displs, long sendtype,
sendcount        1974 ompi/mpi/java/java/Comm.java 	public final void allGather(Object sendbuf, int sendcount, Datatype sendtype,
sendcount        1998 ompi/mpi/java/java/Comm.java 		allGather(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        2049 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int sendcount, Datatype sendtype,
sendcount        2055 ompi/mpi/java/java/Comm.java 		Request req = new Request(iAllGather(handle, sendbuf, sendcount, sendtype.handle,
sendcount        2083 ompi/mpi/java/java/Comm.java 			long comm, Buffer sendbuf, int sendcount, long sendtype,
sendcount        2099 ompi/mpi/java/java/Comm.java 			Object sendbuf, int sendcount, Datatype sendtype,
sendcount        2123 ompi/mpi/java/java/Comm.java 		allGatherv(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        2178 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int sendcount, Datatype sendtype,
sendcount        2185 ompi/mpi/java/java/Comm.java 				handle, sendbuf, sendcount, sendtype.handle,
sendcount        2216 ompi/mpi/java/java/Comm.java 			long handle, Buffer sendbuf, int sendcount, long sendtype,
sendcount        2232 ompi/mpi/java/java/Comm.java 	public final void allToAll(Object sendbuf, int sendcount, Datatype sendtype,
sendcount        2256 ompi/mpi/java/java/Comm.java 		allToAll(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        2281 ompi/mpi/java/java/Comm.java 	public final Request iAllToAll(Buffer sendbuf, int sendcount, Datatype sendtype,
sendcount        2287 ompi/mpi/java/java/Comm.java 		Request req = new Request(iAllToAll(handle, sendbuf, sendcount, sendtype.handle,
sendcount        2295 ompi/mpi/java/java/Comm.java 			long comm, Buffer sendbuf, int sendcount, long sendtype,
sendcount        2314 ompi/mpi/java/java/Comm.java 			Object sendbuf, int[] sendcount, int[] sdispls, Datatype sendtype,
sendcount        2338 ompi/mpi/java/java/Comm.java 		allToAllv(handle, sendbuf, sdb, sendoff, sendcount, sdispls,
sendcount        2368 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int[] sendcount, int[] sdispls, Datatype sendtype,
sendcount        2375 ompi/mpi/java/java/Comm.java 				handle, sendbuf, sendcount, sdispls, sendtype.handle,
sendcount        2383 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int[] sendcount, int[] sdispls, long sendtype,
sendcount        2473 ompi/mpi/java/java/Comm.java 			Object sendbuf, int sendcount, Datatype sendtype,
sendcount        2497 ompi/mpi/java/java/Comm.java 		neighborAllGather(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        2522 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int sendcount, Datatype sendtype,
sendcount        2529 ompi/mpi/java/java/Comm.java 				handle, sendbuf, sendcount, sendtype.handle,
sendcount        2553 ompi/mpi/java/java/Comm.java 			Object sendbuf, int sendcount, Datatype sendtype,
sendcount        2577 ompi/mpi/java/java/Comm.java 		neighborAllGatherv(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        2602 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int sendcount, Datatype sendtype,
sendcount        2609 ompi/mpi/java/java/Comm.java 				handle, sendbuf, sendcount, sendtype.handle,
sendcount        2632 ompi/mpi/java/java/Comm.java 			Object sendbuf, int sendcount, Datatype sendtype,
sendcount        2656 ompi/mpi/java/java/Comm.java 		neighborAllToAll(handle, sendbuf, sdb, sendoff, sendcount,
sendcount        2681 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int sendcount, Datatype sendtype,
sendcount        2688 ompi/mpi/java/java/Comm.java 				handle, sendbuf, sendcount, sendtype.handle,
sendcount        2712 ompi/mpi/java/java/Comm.java 			Object sendbuf, int[] sendcount, int[] sdispls, Datatype sendtype,
sendcount        2737 ompi/mpi/java/java/Comm.java 				sendbuf, sdb, sendoff, sendcount, sdispls,
sendcount        2764 ompi/mpi/java/java/Comm.java 			Buffer sendbuf, int[] sendcount, int[] sdispls, Datatype sendtype,
sendcount        2771 ompi/mpi/java/java/Comm.java 				handle, sendbuf, sendcount, sdispls, sendtype.handle,
sendcount          48 ompi/mpiext/pcollreq/c/allgather_init.c int MPIX_Allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          72 ompi/mpiext/pcollreq/c/allgather_init.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          95 ompi/mpiext/pcollreq/c/allgather_init.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         103 ompi/mpiext/pcollreq/c/allgather_init.c     err = comm->c_coll->coll_allgather_init(sendbuf, sendcount, sendtype,
sendcount          48 ompi/mpiext/pcollreq/c/allgatherv_init.c int MPIX_Allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          81 ompi/mpiext/pcollreq/c/allgatherv_init.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         103 ompi/mpiext/pcollreq/c/allgatherv_init.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         127 ompi/mpiext/pcollreq/c/allgatherv_init.c     err = comm->c_coll->coll_allgatherv_init(sendbuf, sendcount, sendtype,
sendcount          48 ompi/mpiext/pcollreq/c/alltoall_init.c int MPIX_Alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          61 ompi/mpiext/pcollreq/c/alltoall_init.c             memchecker_call(&opal_memchecker_base_isdefined, (void *)sendbuf, sendcount, sendtype);
sendcount          83 ompi/mpiext/pcollreq/c/alltoall_init.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount          93 ompi/mpiext/pcollreq/c/alltoall_init.c             if ((sendtype_size*sendcount) != (recvtype_size*recvcount)) {
sendcount         102 ompi/mpiext/pcollreq/c/alltoall_init.c     err = comm->c_coll->coll_alltoall_init(sendbuf, sendcount, sendtype,
sendcount          48 ompi/mpiext/pcollreq/c/gather_init.c int MPIX_Gather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          73 ompi/mpiext/pcollreq/c/gather_init.c                     memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          82 ompi/mpiext/pcollreq/c/gather_init.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          92 ompi/mpiext/pcollreq/c/gather_init.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         119 ompi/mpiext/pcollreq/c/gather_init.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         151 ompi/mpiext/pcollreq/c/gather_init.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         174 ompi/mpiext/pcollreq/c/gather_init.c     err = comm->c_coll->coll_gather_init(sendbuf, sendcount, sendtype, recvbuf,
sendcount          46 ompi/mpiext/pcollreq/c/gatherv_init.c int MPIX_Gatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          73 ompi/mpiext/pcollreq/c/gatherv_init.c                     memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          86 ompi/mpiext/pcollreq/c/gatherv_init.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         100 ompi/mpiext/pcollreq/c/gatherv_init.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         125 ompi/mpiext/pcollreq/c/gatherv_init.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         166 ompi/mpiext/pcollreq/c/gatherv_init.c                 OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         198 ompi/mpiext/pcollreq/c/gatherv_init.c     err = comm->c_coll->coll_gatherv_init(sendbuf, sendcount, sendtype, recvbuf,
sendcount          13 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int MPIX_Allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          14 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int MPIX_Allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          16 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int MPIX_Alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          22 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int MPIX_Gather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          23 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int MPIX_Gatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          28 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int MPIX_Scatter_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          31 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int MPIX_Neighbor_allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          32 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int MPIX_Neighbor_allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          33 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int MPIX_Neighbor_alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          40 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int PMPIX_Allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          41 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int PMPIX_Allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          43 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int PMPIX_Alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          49 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int PMPIX_Gather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          50 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int PMPIX_Gatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          55 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int PMPIX_Scatter_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          58 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int PMPIX_Neighbor_allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          59 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int PMPIX_Neighbor_allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int recvcounts[], const int displs[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          60 ompi/mpiext/pcollreq/c/mpiext_pcollreq_c.h OMPI_DECLSPEC int PMPIX_Neighbor_alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Info info, MPI_Request *request);
sendcount          51 ompi/mpiext/pcollreq/c/neighbor_allgather_init.c int MPIX_Neighbor_allgather_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          71 ompi/mpiext/pcollreq/c/neighbor_allgather_init.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          95 ompi/mpiext/pcollreq/c/neighbor_allgather_init.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         125 ompi/mpiext/pcollreq/c/neighbor_allgather_init.c     err = comm->c_coll->coll_neighbor_allgather_init(sendbuf, sendcount, sendtype, recvbuf,
sendcount          51 ompi/mpiext/pcollreq/c/neighbor_allgatherv_init.c int MPIX_Neighbor_allgatherv_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          80 ompi/mpiext/pcollreq/c/neighbor_allgatherv_init.c             memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         103 ompi/mpiext/pcollreq/c/neighbor_allgatherv_init.c         OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         148 ompi/mpiext/pcollreq/c/neighbor_allgatherv_init.c     err = comm->c_coll->coll_neighbor_allgatherv_init(sendbuf, sendcount, sendtype,
sendcount          51 ompi/mpiext/pcollreq/c/neighbor_alltoall_init.c int MPIX_Neighbor_alltoall_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          64 ompi/mpiext/pcollreq/c/neighbor_alltoall_init.c             memchecker_call(&opal_memchecker_base_isdefined, (void *)sendbuf, sendcount, sendtype);
sendcount          87 ompi/mpiext/pcollreq/c/neighbor_alltoall_init.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount          95 ompi/mpiext/pcollreq/c/neighbor_alltoall_init.c         if ((sendtype_size*sendcount) != (recvtype_size*recvcount)) {
sendcount         125 ompi/mpiext/pcollreq/c/neighbor_alltoall_init.c     err = comm->c_coll->coll_neighbor_alltoall_init(sendbuf, sendcount, sendtype,
sendcount          48 ompi/mpiext/pcollreq/c/scatter_init.c int MPIX_Scatter_init(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
sendcount          62 ompi/mpiext/pcollreq/c/scatter_init.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount          77 ompi/mpiext/pcollreq/c/scatter_init.c                 memchecker_call(&opal_memchecker_base_isdefined, sendbuf, sendcount, sendtype);
sendcount         120 ompi/mpiext/pcollreq/c/scatter_init.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         148 ompi/mpiext/pcollreq/c/scatter_init.c             OMPI_CHECK_DATATYPE_FOR_SEND(err, sendtype, sendcount);
sendcount         157 ompi/mpiext/pcollreq/c/scatter_init.c     err = comm->c_coll->coll_scatter_init(sendbuf, sendcount, sendtype, recvbuf,
sendcount          43 ompi/mpiext/pcollreq/mpif-h/allgather_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          44 ompi/mpiext/pcollreq/mpif-h/allgather_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, info, request, ierr) )
sendcount          63 ompi/mpiext/pcollreq/mpif-h/allgather_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          64 ompi/mpiext/pcollreq/mpif-h/allgather_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, info, request, ierr) )
sendcount          71 ompi/mpiext/pcollreq/mpif-h/allgather_init_f.c void ompix_allgather_init_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          91 ompi/mpiext/pcollreq/mpif-h/allgather_init_f.c                                   OMPI_FINT_2_INT(*sendcount),
sendcount          43 ompi/mpiext/pcollreq/mpif-h/allgatherv_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          44 ompi/mpiext/pcollreq/mpif-h/allgatherv_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, info, request, ierr) )
sendcount          63 ompi/mpiext/pcollreq/mpif-h/allgatherv_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          64 ompi/mpiext/pcollreq/mpif-h/allgatherv_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, info, request, ierr) )
sendcount          71 ompi/mpiext/pcollreq/mpif-h/allgatherv_init_f.c void ompix_allgatherv_init_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          98 ompi/mpiext/pcollreq/mpif-h/allgatherv_init_f.c                                    OMPI_FINT_2_INT(*sendcount),
sendcount          43 ompi/mpiext/pcollreq/mpif-h/alltoall_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          44 ompi/mpiext/pcollreq/mpif-h/alltoall_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, info, request, ierr) )
sendcount          63 ompi/mpiext/pcollreq/mpif-h/alltoall_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          64 ompi/mpiext/pcollreq/mpif-h/alltoall_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, info, request, ierr) )
sendcount          71 ompi/mpiext/pcollreq/mpif-h/alltoall_init_f.c void ompix_alltoall_init_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          91 ompi/mpiext/pcollreq/mpif-h/alltoall_init_f.c                                  OMPI_FINT_2_INT(*sendcount),
sendcount          43 ompi/mpiext/pcollreq/mpif-h/gather_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          44 ompi/mpiext/pcollreq/mpif-h/gather_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, info, request, ierr) )
sendcount          63 ompi/mpiext/pcollreq/mpif-h/gather_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          64 ompi/mpiext/pcollreq/mpif-h/gather_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, info, request, ierr) )
sendcount          71 ompi/mpiext/pcollreq/mpif-h/gather_init_f.c void ompix_gather_init_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          91 ompi/mpiext/pcollreq/mpif-h/gather_init_f.c     c_ierr = PMPIX_Gather_init(sendbuf, OMPI_FINT_2_INT(*sendcount),
sendcount          43 ompi/mpiext/pcollreq/mpif-h/gatherv_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          44 ompi/mpiext/pcollreq/mpif-h/gatherv_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root, comm, info, request, ierr) )
sendcount          63 ompi/mpiext/pcollreq/mpif-h/gatherv_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request,MPI_Fint *ierr),
sendcount          64 ompi/mpiext/pcollreq/mpif-h/gatherv_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, root, comm, info, request, ierr) )
sendcount          71 ompi/mpiext/pcollreq/mpif-h/gatherv_init_f.c void ompix_gatherv_init_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          97 ompi/mpiext/pcollreq/mpif-h/gatherv_init_f.c     c_ierr = PMPIX_Gatherv_init(sendbuf, OMPI_FINT_2_INT(*sendcount),
sendcount          83 ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_prototypes.h PN2(void, MPIX_Allgather_init, mpix_allgather_init, MPIX_ALLGATHER_INIT, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr));
sendcount          84 ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_prototypes.h PN2(void, MPIX_Allgatherv_init, mpix_allgatherv_init, MPIX_ALLGATHERV_INIT, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr));
sendcount          87 ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_prototypes.h PN2(void, MPIX_Alltoall_init, mpix_alltoall_init, MPIX_ALLTOALL_INIT, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr));
sendcount          93 ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_prototypes.h PN2(void, MPIX_Gather_init, mpix_gather_init, MPIX_GATHER_INIT, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr));
sendcount          94 ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_prototypes.h PN2(void, MPIX_Gatherv_init, mpix_gatherv_init, MPIX_GATHERV_INIT, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr));
sendcount          99 ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_prototypes.h PN2(void, MPIX_Scatter_init, mpix_scatter_init, MPIX_SCATTER_INIT, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr));
sendcount         101 ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_prototypes.h PN2(void, MPIX_Neighbor_allgather_init, mpix_neighbor_allgather_init, MPIX_NEIGHBOR_ALLGATHER_INIT, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr));
sendcount         102 ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_prototypes.h PN2(void, MPIX_Neighbor_allgatherv_init, mpix_neighbor_allgatherv_init, MPIX_NEIGHBOR_ALLGATHERV_INIT, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr));
sendcount         103 ompi/mpiext/pcollreq/mpif-h/mpiext_pcollreq_prototypes.h PN2(void, MPIX_Neighbor_alltoall_init, mpix_neighbor_alltoall_init, MPIX_NEIGHBOR_ALLTOALL_INIT, (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr));
sendcount          46 ompi/mpiext/pcollreq/mpif-h/neighbor_allgather_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          47 ompi/mpiext/pcollreq/mpif-h/neighbor_allgather_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, info, request, ierr) )
sendcount          66 ompi/mpiext/pcollreq/mpif-h/neighbor_allgather_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          67 ompi/mpiext/pcollreq/mpif-h/neighbor_allgather_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, info, request, ierr) )
sendcount          74 ompi/mpiext/pcollreq/mpif-h/neighbor_allgather_init_f.c void ompix_neighbor_allgather_init_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          94 ompi/mpiext/pcollreq/mpif-h/neighbor_allgather_init_f.c                                            OMPI_FINT_2_INT(*sendcount),
sendcount          46 ompi/mpiext/pcollreq/mpif-h/neighbor_allgatherv_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          47 ompi/mpiext/pcollreq/mpif-h/neighbor_allgatherv_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, info, request, ierr) )
sendcount          66 ompi/mpiext/pcollreq/mpif-h/neighbor_allgatherv_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcounts, MPI_Fint *displs, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          67 ompi/mpiext/pcollreq/mpif-h/neighbor_allgatherv_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, info, request, ierr) )
sendcount          74 ompi/mpiext/pcollreq/mpif-h/neighbor_allgatherv_init_f.c void ompix_neighbor_allgatherv_init_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount         101 ompi/mpiext/pcollreq/mpif-h/neighbor_allgatherv_init_f.c                                             OMPI_FINT_2_INT(*sendcount),
sendcount          47 ompi/mpiext/pcollreq/mpif-h/neighbor_alltoall_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          48 ompi/mpiext/pcollreq/mpif-h/neighbor_alltoall_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, info, request, ierr) )
sendcount          67 ompi/mpiext/pcollreq/mpif-h/neighbor_alltoall_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          68 ompi/mpiext/pcollreq/mpif-h/neighbor_alltoall_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, info, request, ierr) )
sendcount          75 ompi/mpiext/pcollreq/mpif-h/neighbor_alltoall_init_f.c void ompix_neighbor_alltoall_init_f(char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype,
sendcount          95 ompi/mpiext/pcollreq/mpif-h/neighbor_alltoall_init_f.c                                           OMPI_FINT_2_INT(*sendcount),
sendcount          43 ompi/mpiext/pcollreq/mpif-h/scatter_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          44 ompi/mpiext/pcollreq/mpif-h/scatter_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, info, request, ierr) )
sendcount          63 ompi/mpiext/pcollreq/mpif-h/scatter_init_f.c                             (char *sendbuf, MPI_Fint *sendcount, MPI_Fint *sendtype, char *recvbuf, MPI_Fint *recvcount, MPI_Fint *recvtype, MPI_Fint *root, MPI_Fint *comm, MPI_Fint *info, MPI_Fint *request, MPI_Fint *ierr),
sendcount          64 ompi/mpiext/pcollreq/mpif-h/scatter_init_f.c                             (sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, info, request, ierr) )
sendcount          71 ompi/mpiext/pcollreq/mpif-h/scatter_init_f.c void ompix_scatter_init_f(char *sendbuf, MPI_Fint *sendcount,
sendcount          91 ompi/mpiext/pcollreq/mpif-h/scatter_init_f.c     c_ierr = PMPIX_Scatter_init(sendbuf,OMPI_FINT_2_INT(*sendcount),
sendcount          25 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine mpix_allgather_init(sendbuf, sendcount, sendtype, &
sendcount          37 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount
sendcount          47 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine mpix_allgatherv_init(sendbuf, sendcount, sendtype, &
sendcount          59 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount
sendcount          93 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine mpix_alltoall_init(sendbuf, sendcount, sendtype, &
sendcount         105 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount
sendcount         213 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine mpix_gather_init(sendbuf, sendcount, sendtype, &
sendcount         225 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount, root
sendcount         235 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine mpix_gatherv_init(sendbuf, sendcount, sendtype, &
sendcount         247 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, root
sendcount         350 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine mpix_scatter_init(sendbuf, sendcount, sendtype, &
sendcount         362 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount, root
sendcount         395 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine mpix_neighbor_allgather_init(sendbuf, sendcount, sendtype, &
sendcount         407 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount
sendcount         417 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine mpix_neighbor_allgatherv_init(sendbuf, sendcount, sendtype, &
sendcount         429 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount
sendcount         440 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine mpix_neighbor_alltoall_init(sendbuf, sendcount, sendtype, &
sendcount         452 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount
sendcount         507 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine pmpix_allgather_init(sendbuf, sendcount, sendtype, &
sendcount         519 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount
sendcount         529 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine pmpix_allgatherv_init(sendbuf, sendcount, sendtype, &
sendcount         541 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount
sendcount         575 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine pmpix_alltoall_init(sendbuf, sendcount, sendtype, &
sendcount         587 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount
sendcount         695 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine pmpix_gather_init(sendbuf, sendcount, sendtype, &
sendcount         707 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount, root
sendcount         717 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine pmpix_gatherv_init(sendbuf, sendcount, sendtype, &
sendcount         729 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, root
sendcount         832 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine pmpix_scatter_init(sendbuf, sendcount, sendtype, &
sendcount         844 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount, root
sendcount         877 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine pmpix_neighbor_allgather_init(sendbuf, sendcount, sendtype, &
sendcount         889 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount
sendcount         899 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine pmpix_neighbor_allgatherv_init(sendbuf, sendcount, sendtype, &
sendcount         911 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount
sendcount         922 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h     subroutine pmpix_neighbor_alltoall_init(sendbuf, sendcount, sendtype, &
sendcount         934 ompi/mpiext/pcollreq/use-mpi-f08/mpiext_pcollreq_usempif08.h         integer, intent(in) :: sendcount, recvcount
sendcount          25 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine mpix_allgather_init(sendbuf, sendcount, sendtype, &
sendcount          35 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount          47 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine pmpix_allgather_init(sendbuf, sendcount, sendtype, &
sendcount          57 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount          69 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine mpix_allgatherv_init(sendbuf, sendcount, sendtype, &
sendcount          79 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount          92 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine pmpix_allgatherv_init(sendbuf, sendcount, sendtype, &
sendcount         102 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         157 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine mpix_alltoall_init(sendbuf, sendcount, sendtype, &
sendcount         167 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         179 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine pmpix_alltoall_init(sendbuf, sendcount, sendtype, &
sendcount         189 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         395 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine mpix_gather_init(sendbuf, sendcount, sendtype, &
sendcount         405 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         418 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine pmpix_gather_init(sendbuf, sendcount, sendtype, &
sendcount         428 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         441 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine mpix_gatherv_init(sendbuf, sendcount, sendtype, &
sendcount         451 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         465 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine pmpix_gatherv_init(sendbuf, sendcount, sendtype, &
sendcount         475 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         659 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine mpix_scatter_init(sendbuf, sendcount, sendtype, &
sendcount         669 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         682 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine pmpix_scatter_init(sendbuf, sendcount, sendtype, &
sendcount         692 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         753 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine mpix_neighbor_allgather_init(sendbuf, sendcount, sendtype, &
sendcount         763 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         775 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine pmpix_neighbor_allgather_init(sendbuf, sendcount, sendtype, &
sendcount         785 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         797 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine mpix_neighbor_allgatherv_init(sendbuf, sendcount, sendtype, &
sendcount         807 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         820 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine pmpix_neighbor_allgatherv_init(sendbuf, sendcount, sendtype, &
sendcount         830 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         843 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine mpix_neighbor_alltoall_init(sendbuf, sendcount, sendtype, &
sendcount         853 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount
sendcount         865 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h     subroutine pmpix_neighbor_alltoall_init(sendbuf, sendcount, sendtype, &
sendcount         875 ompi/mpiext/pcollreq/use-mpi/mpiext_pcollreq_usempi.h         integer, intent(in) :: sendcount