Home
last modified time | relevance | path

Searched refs:restorerow (Results 1 – 8 of 8) sorted by relevance

/petsc/src/mat/impls/cdiagonal/
H A Dcdiagonal.c392 A->ops->restorerow = MatRestoreRow_ConstantDiagonal; in MatCreate_ConstantDiagonal()
/petsc/src/mat/impls/kaij/
H A Dkaij.c1474 A->ops->restorerow = MatRestoreRow_SeqKAIJ; in MatCreate_KAIJ()
1484 A->ops->restorerow = MatRestoreRow_MPIKAIJ; in MatCreate_KAIJ()
/petsc/src/mat/impls/sbaij/mpi/
H A Dmpisbaij.c1251 PetscCall((*mat->A->ops->restorerow)(mat->A, lrow, &nzA, pcA, pvA)); in MatGetRow_MPISBAIJ()
1252 PetscCall((*mat->B->ops->restorerow)(mat->B, lrow, &nzB, pcB, pvB)); in MatGetRow_MPISBAIJ()
/petsc/include/petsc/private/
H A Dmatimpl.h40 PetscErrorCode (*restorerow)(Mat, PetscInt, PetscInt *, PetscInt *[], PetscScalar *[]); member
/petsc/src/mat/impls/baij/mpi/
H A Dmpibaij.c1377 PetscCall((*mat->A->ops->restorerow)(mat->A, lrow, &nzA, pcA, pvA)); in MatGetRow_MPIBAIJ()
1378 PetscCall((*mat->B->ops->restorerow)(mat->B, lrow, &nzB, pcB, pvB)); in MatGetRow_MPIBAIJ()
/petsc/src/mat/impls/hypre/
H A Dmhypre.c2421 B->ops->restorerow = MatRestoreRow_HYPRE;
/petsc/src/mat/impls/aij/mpi/
H A Dmpiaij.c1791 PetscCall((*mat->A->ops->restorerow)(mat->A, lrow, &nzA, pcA, pvA)); in MatGetRow_MPIAIJ()
1792 PetscCall((*mat->B->ops->restorerow)(mat->B, lrow, &nzB, pcB, pvB)); in MatGetRow_MPIAIJ()
/petsc/src/mat/interface/
H A Dmatrix.c638 PetscTryTypeMethod(mat, restorerow, row, ncols, (PetscInt **)cols, (PetscScalar **)vals); in MatRestoreRow()