Lines Matching refs:count2
2727 PetscMPIInt count2, err; in MPIU_Get_count() local
2730 err = MPI_Get_count(status, dtype, &count2); in MPIU_Get_count()
2731 *count = count2; in MPIU_Get_count()
2737 PetscMPIInt count2, err; in MPIU_Send() local
2739 PetscMPIIntCast_Internal(count, &count2); in MPIU_Send()
2740 err = MPI_Send((void *)buf, count2, dtype, dest, tag, comm); in MPIU_Send()
2746 PetscMPIInt count2, err; in MPIU_Send_init() local
2748 PetscMPIIntCast_Internal(count, &count2); in MPIU_Send_init()
2749 err = MPI_Send_init((void *)buf, count2, dtype, dest, tag, comm, request); in MPIU_Send_init()
2755 PetscMPIInt count2, err; in MPIU_Isend() local
2757 PetscMPIIntCast_Internal(count, &count2); in MPIU_Isend()
2758 err = MPI_Isend((void *)buf, count2, dtype, dest, tag, comm, request); in MPIU_Isend()
2764 PetscMPIInt count2, err; in MPIU_Recv() local
2766 PetscMPIIntCast_Internal(count, &count2); in MPIU_Recv()
2767 err = MPI_Recv((void *)buf, count2, dtype, source, tag, comm, status); in MPIU_Recv()
2773 PetscMPIInt count2, err; in MPIU_Recv_init() local
2775 PetscMPIIntCast_Internal(count, &count2); in MPIU_Recv_init()
2776 err = MPI_Recv_init((void *)buf, count2, dtype, source, tag, comm, request); in MPIU_Recv_init()
2782 PetscMPIInt count2, err; in MPIU_Irecv() local
2784 PetscMPIIntCast_Internal(count, &count2); in MPIU_Irecv()
2785 err = MPI_Irecv((void *)buf, count2, dtype, source, tag, comm, request); in MPIU_Irecv()
2791 PetscMPIInt count2, err; in MPIU_Reduce() local
2793 PetscMPIIntCast_Internal(count, &count2); in MPIU_Reduce()
2794 err = MPI_Reduce((void *)inbuf, outbuf, count2, dtype, op, root, comm); in MPIU_Reduce()
2801 PetscMPIInt count2, err; in MPIU_Reduce_local() local
2803 PetscMPIIntCast_Internal(count, &count2); in MPIU_Reduce_local()
2804 err = MPI_Reduce_local((void *)inbuf, inoutbuf, count2, dtype, op); in MPIU_Reduce_local()
2831 MPI_Count count2; in MPIU_Get_count() local
2835 err = MPI_Get_count_c(status, dtype, &count2); in MPIU_Get_count()
2837 PetscCountCast_Internal(count2, count); in MPIU_Get_count()