Fix detection of `MPI_LARGE_COUNT` for all conditions in `mpiutils.h`
Intel MPI recently released v2021.10 as the new version which is installed by default from the oneAPI package repositories. This seems to include MPI_Send_c and MPI_Recv_c, etc. thus PETSC_HAVE_MPI_LARGE_COUNT gets defined by the PETSc configure. However it does not include MPI_Reduce_local_c, leading to compilation errors when MPI_Reduce_local is detected during configure and PETSC_HAVE_MPI_REDUCE_LOCAL gets set. This error will only show up when using 64 bit indices.
This PR should resolve the issue by testing for all of the methods used in https://gitlab.com/petsc/petsc/-/blob/main/include/petsc/private/mpiutils.h when PETSC_HAVE_MPI_LARGE_COUNT. Thank you!