Home
last modified time | relevance | path

Searched refs:CHKERRQ (Results 1 – 10 of 10) sorted by relevance

/petsc/src/snes/tutorials/
H A Dex5f.F9082 CHKERRQ(ierr)
87 CHKERRQ(ierr)
92 CHKERRQ(ierr)
205 CHKERRQ(ierr)
297 CHKERRQ(ierr)
311 CHKERRQ(ierr)
316 CHKERRQ(ierr)
318 CHKERRQ(ierr)
321 CHKERRQ(ierr)
323 CHKERRQ(ierr)
[all …]
/petsc/include/petsc/finclude/
H A Dpetscsysbase.h140 #define CHKERRQ(ierr) if (ierr .ne. 0) then;call PetscErrorF(ierr,__LINE__,__FILE__);return;endif macro
145 #define CHKERRQ(ierr) if (ierr .ne. 0) then;call PetscErrorF(ierr);return;endif
151 #define PetscCall(func) call func; CHKERRQ(ierr)
/petsc/src/sys/ftn-mod/
H A Dpetscsysmod.F90507 CHKERRQ(ierr)
510 CHKERRQ(ierr)
523 CHKERRQ(ierr)
526 CHKERRQ(ierr)
537 CHKERRQ(ierr)
/petsc/doc/changes/
H A D21.md84 - CHKERRA() is now obselete; use CHKERRQ() instead. Changed the
H A D2028.md143 with CHKERRQ(). On systems where free() returns a void (and the
174 your main C/C++ subroutine you can use SETERRQ() and CHKERRQ()
H A D2017.md163 that may call SETERRQ(), SETERRA(), CHKERRQ(), or CHKERRA().
H A D38.md209 SETERRQ(), and CHKERRQ from Fortran now have the same behavior as in
H A D317.md16 …uce()` to always returns a PETSc error code that should be checked with `CHKERRQ(ierr)` or `PetscC…
70 …lContinue()`, `PetscCallThrow()`, and `PetscCallCXX()`. These supersede `CHKERRQ()`, `CHKERRV()`, …
H A D318.md84 - Change `PetscCall()` from Fortran so that `call PetscFunction(args,ierr);CHKERRQ(ierr);` can be r…
/petsc/include/
H A Dpetscerror.h621 #define CHKERRQ(...) PetscCall(__VA_ARGS__) macro