Lines Matching refs:nInt
640 PetscInt nSignedChar = 0, nUnsignedChar = 0, nInt = 0, nPetscInt = 0, nPetscReal = 0; in PetscSFLinkSetUp_Kokkos() local
652 PetscCall(MPIPetsc_Type_compare_contig(unit, MPI_INT, &nInt)); in PetscSFLinkSetUp_Kokkos()
689 } else if (nInt) { in PetscSFLinkSetUp_Kokkos()
691 if (nInt == 8) PackInit_IntegerType<int, 8, 1>(link); in PetscSFLinkSetUp_Kokkos()
692 else if (nInt % 8 == 0) PackInit_IntegerType<int, 8, 0>(link); in PetscSFLinkSetUp_Kokkos()
693 else if (nInt == 4) PackInit_IntegerType<int, 4, 1>(link); in PetscSFLinkSetUp_Kokkos()
694 else if (nInt % 4 == 0) PackInit_IntegerType<int, 4, 0>(link); in PetscSFLinkSetUp_Kokkos()
695 else if (nInt == 2) PackInit_IntegerType<int, 2, 1>(link); in PetscSFLinkSetUp_Kokkos()
696 else if (nInt % 2 == 0) PackInit_IntegerType<int, 2, 0>(link); in PetscSFLinkSetUp_Kokkos()
697 else if (nInt == 1) PackInit_IntegerType<int, 1, 1>(link); in PetscSFLinkSetUp_Kokkos()
698 else if (nInt % 1 == 0) in PetscSFLinkSetUp_Kokkos()
754 PetscCall(PetscIntCast(nbyte / sizeof(int), &nInt)); in PetscSFLinkSetUp_Kokkos()
756 if (nInt == 8) PackInit_DumbType<int, 8, 1>(link); in PetscSFLinkSetUp_Kokkos()
757 else if (nInt % 8 == 0) PackInit_DumbType<int, 8, 0>(link); in PetscSFLinkSetUp_Kokkos()
758 else if (nInt == 4) PackInit_DumbType<int, 4, 1>(link); in PetscSFLinkSetUp_Kokkos()
759 else if (nInt % 4 == 0) PackInit_DumbType<int, 4, 0>(link); in PetscSFLinkSetUp_Kokkos()
760 else if (nInt == 2) PackInit_DumbType<int, 2, 1>(link); in PetscSFLinkSetUp_Kokkos()
761 else if (nInt % 2 == 0) PackInit_DumbType<int, 2, 0>(link); in PetscSFLinkSetUp_Kokkos()
762 else if (nInt == 1) PackInit_DumbType<int, 1, 1>(link); in PetscSFLinkSetUp_Kokkos()
763 else if (nInt % 1 == 0) in PetscSFLinkSetUp_Kokkos()