Lines Matching refs:err
44 MatFactorError err; in PCSetUp_LU() local
66 PetscCall(MatFactorGetError(pc->pmat, &err)); in PCSetUp_LU()
67 if (err) { /* Factor() fails */ in PCSetUp_LU()
68 pc->failedreason = (PCFailedReason)err; in PCSetUp_LU()
118 PetscCall(MatFactorGetError(((PC_Factor *)dir)->fact, &err)); in PCSetUp_LU()
119 if (err == MAT_FACTOR_NUMERIC_ZEROPIVOT) { in PCSetUp_LU()
124 PetscCall(MatFactorGetError(((PC_Factor *)dir)->fact, &err)); in PCSetUp_LU()
125 if (err) { /* FactorSymbolic() fails */ in PCSetUp_LU()
126 pc->failedreason = (PCFailedReason)err; in PCSetUp_LU()
131 PetscCall(MatFactorGetError(((PC_Factor *)dir)->fact, &err)); in PCSetUp_LU()
132 if (err) { /* FactorNumeric() fails */ in PCSetUp_LU()
133 pc->failedreason = (PCFailedReason)err; in PCSetUp_LU()