Lines Matching refs:pj
225 PetscInt i, j, k, nz, nzL, row, *pj; in MatLUFactorNumeric_SeqAIJ() local
298 pj = b->j + bdiag[row + 1] + 1; /* beginning of U(row,:) */ in MatLUFactorNumeric_SeqAIJ()
302 for (j = 0; j < nz; j++) rtmp[pj[j]] -= multiplier * pv[j]; in MatLUFactorNumeric_SeqAIJ()
312 pj = b->j + bi[i]; in MatLUFactorNumeric_SeqAIJ()
315 pv[j] = rtmp[pj[j]]; in MatLUFactorNumeric_SeqAIJ()
321 pj = b->j + bdiag[i + 1] + 1; in MatLUFactorNumeric_SeqAIJ()
324 pv[j] = rtmp[pj[j]]; in MatLUFactorNumeric_SeqAIJ()
405 const PetscInt *ajtmp, *bjtmp, *ddiag, *pj; in MatLUFactorNumeric_SeqAIJ_inplace() local
463 pj = b->j + ddiag[row] + 1; in MatLUFactorNumeric_SeqAIJ_inplace()
467 for (j = 0; j < nz; j++) rtmp[pj[j]] -= multiplier * pv[j]; in MatLUFactorNumeric_SeqAIJ_inplace()
474 pj = b->j + bi[i]; in MatLUFactorNumeric_SeqAIJ_inplace()
479 pv[j] = rtmp[pj[j]]; in MatLUFactorNumeric_SeqAIJ_inplace()
562 PetscInt nbdiag, *pj; in MatLUFactorNumeric_SeqAIJ_InplaceWithPerm() local
656 pj = aj + diag[r[row]] + 1; in MatLUFactorNumeric_SeqAIJ_InplaceWithPerm()
661 for (j = 0; j < nz; j++) rtmp[pj[j]] -= multiplier * pv[j]; in MatLUFactorNumeric_SeqAIJ_InplaceWithPerm()
668 pj = aj + ai[r[i]]; in MatLUFactorNumeric_SeqAIJ_InplaceWithPerm()
674 pv[j] = rtmp[pj[j]]; in MatLUFactorNumeric_SeqAIJ_InplaceWithPerm()