Lines Matching refs:strflg
47 PetscBool strflg; in main() local
68 PetscCall(PetscStrcmp("sum", opstring, &strflg)); in main()
69 if (strflg) mop = MPIU_SUM; in main()
70 PetscCall(PetscStrcmp("prod", opstring, &strflg)); in main()
71 if (strflg) mop = MPI_PROD; in main()
72 PetscCall(PetscStrcmp("max", opstring, &strflg)); in main()
73 if (strflg) mop = MPI_MAX; in main()
74 PetscCall(PetscStrcmp("min", opstring, &strflg)); in main()
75 if (strflg) mop = MPI_MIN; in main()
76 PetscCall(PetscStrcmp("land", opstring, &strflg)); in main()
77 if (strflg) mop = MPI_LAND; in main()
78 PetscCall(PetscStrcmp("band", opstring, &strflg)); in main()
79 if (strflg) mop = MPI_BAND; in main()
80 PetscCall(PetscStrcmp("lor", opstring, &strflg)); in main()
81 if (strflg) mop = MPI_LOR; in main()
82 PetscCall(PetscStrcmp("bor", opstring, &strflg)); in main()
83 if (strflg) mop = MPI_BOR; in main()
84 PetscCall(PetscStrcmp("lxor", opstring, &strflg)); in main()
85 if (strflg) mop = MPI_LXOR; in main()
86 PetscCall(PetscStrcmp("bxor", opstring, &strflg)); in main()
87 if (strflg) mop = MPI_BXOR; in main()