| /petsc/src/mat/tests/ |
| H A D | ex58f.F90 | 35 PetscCallA(MatRestoreRow(A, row, ncol, cols, vals, ierr)) 38 PetscCallA(MatRestoreRow(A, row, PETSC_NULL_INTEGER, cols, PETSC_NULL_SCALAR_POINTER, ierr)) 41 PetscCallA(MatRestoreRow(A, row, PETSC_NULL_INTEGER, PETSC_NULL_INTEGER_POINTER, vals, ierr)) 43 …PetscCallA(MatRestoreRow(A, row, ncol, PETSC_NULL_INTEGER_POINTER, PETSC_NULL_SCALAR_POINTER, ierr…
|
| H A D | ex47.c | 93 PetscCall(MatRestoreRow(A, row, &ncols1, &cols1, &vals1)); in main() 94 PetscCall(MatRestoreRow(B, row, &ncols2, &cols2, &vals2)); in main()
|
| H A D | ex73.c | 155 PetscCall(MatRestoreRow(B, i + rstart, &nzl, &cols, NULL)); in main() 172 PetscCall(MatRestoreRow(B, i + rstart, &nzl, &cols, &vals)); in main()
|
| H A D | ex225.c | 120 PetscCall(MatRestoreRow(A, i, &nzA, &idxA, &vA)); in main() 121 PetscCall(MatRestoreRow(B, i, &nzB, &idxB, &vB)); in main()
|
| H A D | ex14.c | 57 PetscCall(MatRestoreRow(C, i, &nz, &idx, &values)); in main()
|
| H A D | ex21.c | 64 PetscCall(MatRestoreRow(C, i, &nz, &idx, &values)); in main()
|
| H A D | ex53.c | 142 PetscCall(MatRestoreRow(A, row, &ncols1, &cols1, &v1)); in main() 143 PetscCall(MatRestoreRow(B, row, &ncols2, &cols2, &v2)); in main()
|
| H A D | ex240.c | 58 PetscCall(MatRestoreRow(A, rstart + i, &ncols, &cols, &vals)); in main()
|
| H A D | ex167.c | 146 PetscCall(MatRestoreRow(S[l], i, &ncols, &cols, NULL)); in main()
|
| /petsc/src/ksp/pc/impls/gamg/ |
| H A D | classical.c | 129 PetscCall(MatRestoreRow(A, r, &ncols, &rcol, &rval)); in PCGAMGCreateGraph_Classical() 153 PetscCall(MatRestoreRow(A, r, &ncols, &rcol, &rval)); in PCGAMGCreateGraph_Classical() 265 PetscCall(MatRestoreRow(A, i, &ncols, &rcol, &rval)); in PCGAMGProlongator_Classical_Direct() 284 PetscCall(MatRestoreRow(lA, i, &ncols, &rcol, &rval)); in PCGAMGProlongator_Classical_Direct() 292 PetscCall(MatRestoreRow(gA, i, &ncols, &rcol, &rval)); in PCGAMGProlongator_Classical_Direct() 341 PetscCall(MatRestoreRow(lA, i, &ncols, &rcol, &rval)); in PCGAMGProlongator_Classical_Direct() 361 PetscCall(MatRestoreRow(gA, i, &ncols, &rcol, &rval)); in PCGAMGProlongator_Classical_Direct() 400 PetscCall(MatRestoreRow(lA, i, &ncols, &rcol, &rval)); in PCGAMGProlongator_Classical_Direct() 422 PetscCall(MatRestoreRow(gA, i, &ncols, &rcol, &rval)); in PCGAMGProlongator_Classical_Direct() 489 PetscCall(MatRestoreRow(*P, i, &ncols, &pcol, &pval)); in PCGAMGTruncateProlongator_Private() [all …]
|
| /petsc/src/mat/utils/ |
| H A D | axpy.c | 171 PetscCall(MatRestoreRow(Y, r, &ncols, &row, &vals)); in MatAXPY_Basic_Preallocate() 174 PetscCall(MatRestoreRow(X, r, &ncols, &row, &vals)); in MatAXPY_Basic_Preallocate() 215 PetscCall(MatRestoreRow(X, i, &ncols, &row, &vals)); in MatAXPY_Basic() 229 PetscCall(MatRestoreRow(X, i, &ncols, &row, &vals)); in MatAXPY_Basic() 266 PetscCall(MatRestoreRow(Y, i, &ncols, &row, &vals)); in MatAXPY_BasicWithPreallocation() 270 PetscCall(MatRestoreRow(X, i, &ncols, &row, &vals)); in MatAXPY_BasicWithPreallocation() 279 PetscCall(MatRestoreRow(Y, i, &ncols, &row, &vals)); in MatAXPY_BasicWithPreallocation() 288 PetscCall(MatRestoreRow(X, i, &ncols, &row, &vals)); in MatAXPY_BasicWithPreallocation() 527 PetscCall(MatRestoreRow(A, r, &ncols, NULL, NULL)); in MatFilter() 548 PetscCall(MatRestoreRow(A, r, &ncols, &cols, &vals)); in MatFilter()
|
| H A D | bandwidth.c | 39 PetscCall(MatRestoreRow(A, r, &ncols, &cols, NULL)); in MatComputeBandwidth()
|
| H A D | convert.c | 48 PetscCall(MatRestoreRow(mat, i, &nz, &cwork, &vwork)); in MatConvert_Basic()
|
| H A D | getcolv.c | 61 PetscCall(MatRestoreRow(A, i, &nz, &idx, &v)); in MatGetColumnVector()
|
| /petsc/src/dm/impls/composite/ |
| H A D | packm.c | 106 PetscCall(MatRestoreRow(Atmp, rstart + i, &nc, NULL, NULL)); in DMCreateMatrix_Composite_AIJ() 118 PetscCall(MatRestoreRow(Atmp, rstart + i, &nc, &cols, NULL)); in DMCreateMatrix_Composite_AIJ() 153 PetscCall(MatRestoreRow(Atmp, rstart + i, &nc, NULL, NULL)); in DMCreateMatrix_Composite_AIJ() 165 PetscCall(MatRestoreRow(Atmp, rstart + i, &nc, &cols, &values)); in DMCreateMatrix_Composite_AIJ()
|
| /petsc/src/mat/tutorials/ |
| H A D | ex12.c | 33 PetscCall(MatRestoreRow(A, i, &nc, NULL, NULL)); in PadMatrix() 44 PetscCall(MatRestoreRow(A, i, &nc, &aj, &aa)); in PadMatrix()
|
| H A D | ex16.c | 76 PetscCall(MatRestoreRow(A, row, &ncols, &cols, &vals)); in main()
|
| /petsc/src/mat/graphops/color/utils/ |
| H A D | bipartite.c | 23 PetscCall(MatRestoreRow(m, i, &ncol, NULL, &vcol)); in MatColoringCreateBipartiteGraph() 35 PetscCall(MatRestoreRow(m, i, &ncol, &icol, &vcol)); in MatColoringCreateBipartiteGraph()
|
| /petsc/src/ksp/pc/impls/kaczmarz/ |
| H A D | kaczmarz.c | 46 PetscCall(MatRestoreRow(pc->pmat, i, &ncols, &cols, &vals)); in PCApply_Kaczmarz() 62 PetscCall(MatRestoreRow(pc->pmat, i, &ncols, &cols, &vals)); in PCApply_Kaczmarz()
|
| /petsc/src/tao/constrained/impls/ipm/ |
| H A D | pdipm.c | 326 PetscCall(MatRestoreRow(tao->jacobian_equality, i + rjstart, &nc, &aj, &aa)); in TaoSNESJacobian_PDIPM() 346 PetscCall(MatRestoreRow(tao->jacobian_inequality, i + rjstart, &nc, &aj, &aa)); in TaoSNESJacobian_PDIPM() 383 PetscCall(MatRestoreRow(tao->hessian, i + rjstart, &nc, &aj, &aa)); in TaoSNESJacobian_PDIPM() 397 PetscCall(MatRestoreRow(pdipm->jac_equality_trans, i + rjstart, &nc, &aj, &aa)); in TaoSNESJacobian_PDIPM() 412 PetscCall(MatRestoreRow(pdipm->jac_inequality_trans, i + rjstart, &nc, &aj, &aa)); in TaoSNESJacobian_PDIPM() 1079 PetscCall(MatRestoreRow(tao->hessian, i + rjstart, &nc, &aj, NULL)); in TaoSetup_PDIPM() 1093 PetscCall(MatRestoreRow(pdipm->jac_equality_trans, i + rjstart, &nc, &aj, NULL)); in TaoSetup_PDIPM() 1108 PetscCall(MatRestoreRow(Jce_xfixed_trans, i + rjstart, &nc, &aj, NULL)); in TaoSetup_PDIPM() 1123 PetscCall(MatRestoreRow(pdipm->jac_inequality_trans, i + rjstart, &nc, &aj, NULL)); in TaoSetup_PDIPM() 1137 PetscCall(MatRestoreRow(Jci_xb_trans, i + rjstart, &nc, &aj, NULL)); in TaoSetup_PDIPM() [all …]
|
| H A D | ipm.c | 698 PetscCall(MatRestoreRow(tao->jacobian_inequality, i, &ncols, NULL, NULL)); in IPMUpdateAi() 725 PetscCall(MatRestoreRow(tao->jacobian_inequality, i, &ncols, &cols, &vals)); in IPMUpdateAi() 842 PetscCall(MatRestoreRow(tao->hessian, i, &ncols, NULL, NULL)); in IPMUpdateK() 892 PetscCall(MatRestoreRow(tao->hessian, i, &ncols, &cols, &vals)); in IPMUpdateK() 912 PetscCall(MatRestoreRow(tao->jacobian_equality, i, &ncols, &cols, &vals)); in IPMUpdateK() 933 PetscCall(MatRestoreRow(ipmP->Ai, i, &ncols, &cols, &vals)); in IPMUpdateK()
|
| /petsc/src/ksp/pc/impls/spai/ |
| H A D | dspai.c | 33 PetscCall(MatRestoreRow(A, i, &nz, &cols, &vals)); in MatDumpSPAI()
|
| /petsc/src/mat/interface/ftn-custom/ |
| H A D | zmatrixf90.c | 81 *ierr = MatRestoreRow(*B, *row, &n, NULL, NULL); in matrestorerow_() 97 *ierr = MatRestoreRow(*B, *row, &n, NULL, &A); in matrestorerow_() 99 *ierr = MatRestoreRow(*B, *row, &n, &IA, NULL); in matrestorerow_() 101 *ierr = MatRestoreRow(*B, *row, &n, &IA, &A); in matrestorerow_()
|
| /petsc/src/mat/graphops/order/ |
| H A D | spectral.c | 59 PetscCall(MatRestoreRow(A, r, &ncols, &cols, &vals)); in MatCreateLaplacian() 90 PetscCall(MatRestoreRow(A, r, &ncols, &cols, &vals)); in MatCreateLaplacian()
|
| /petsc/src/mat/impls/sbaij/mpi/ |
| H A D | mpiaijsbaij.c | 91 PetscCall(MatRestoreRow(A, i, &nz, &cwork, &vwork)); in MatConvert_MPIBAIJ_MPISBAIJ()
|