Lines Matching refs:found
29 PetscBool found = PETSC_FALSE; in MatGetRootType_Private() local
37 PetscCall(PetscStrcmp(inType, names->mname, &found)); in MatGetRootType_Private()
38 if (!found) PetscCall(PetscStrcmp(inType, names->sname, &found)); in MatGetRootType_Private()
39 if (found) { in MatGetRootType_Private()
40 found = PETSC_TRUE; in MatGetRootType_Private()
46 if (!found) *rootType = inType; in MatGetRootType_Private()
66 PetscBool found = PETSC_FALSE; in MatGetMPIMatType_Private() local
74 PetscCall(PetscStrcmp(inType, names->sname, &found)); in MatGetMPIMatType_Private()
75 if (!found) PetscCall(PetscStrcmp(inType, names->mname, &found)); in MatGetMPIMatType_Private()
76 if (!found) PetscCall(PetscStrcmp(inType, names->rname, &found)); in MatGetMPIMatType_Private()
77 if (found) { in MatGetMPIMatType_Private()
78 found = PETSC_TRUE; in MatGetMPIMatType_Private()
84 …PetscCheck(found, PETSC_COMM_SELF, PETSC_ERR_SUP, "No corresponding parallel (MPI) type for this m… in MatGetMPIMatType_Private()
109 …PetscBool sametype, found, subclass = PETSC_FALSE, matMPI = PETSC_FALSE, requestSeq = PETSC_FALS… in MatSetType() local
129 PetscCall(PetscStrcmp(matype, names->rname, &found)); in MatSetType()
130 if (found) { in MatSetType()