Searched refs:cfunc (Results 1 – 6 of 6) sorted by relevance
| /petsc/src/ksp/ksp/interface/ |
| H A D | itcl.c | 246 PetscErrorCode (*cfunc)(PetscViewer, PetscViewerFormat, void *, PetscViewerAndFormat **); in KSPMonitorSetFromOptions() local 265 PetscCall(PetscFunctionListFind(KSPMonitorCreateList, key, &cfunc)); in KSPMonitorSetFromOptions() 267 if (!cfunc) cfunc = PetscViewerAndFormatCreate_Internal; in KSPMonitorSetFromOptions() 270 PetscCall((*cfunc)(viewer, format, ctx, &vf)); in KSPMonitorSetFromOptions()
|
| /petsc/config/BuildSystem/config/ |
| H A D | compilers.py | 753 def testMangling(self, cfunc, ffunc, clanguage = 'C', extraObjs = []): argument 759 if not self.checkCompile(cfunc, None, cleanup = 0): 760 self.logPrint('Cannot compile C function: '+cfunc, 3, 'compilers') 793 cfunc = self.manglerFuncs[mangler][1] 795 self.logWrite('Testing Fortran mangling type '+mangler+' with code '+cfunc) 796 if self.testMangling(cfunc, ffunc): 1318 cinc, cfunc, ffunc = self.manglerFuncs[self.fortranMangling] 1325 self.logPrint('Cannot compile Cxx function: '+cfunc, 3, 'compilers') 1333 if self.testMangling(cinc+cfunc, ffunc, 'Cxx', extraObjs = [cxxobj]): 1339 if self.testMangling(cinc+cfunc, ffunc, 'Cxx', extraObjs = [cxxobj]):
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | PETSc.pyx | 291 const char *cfunc, 303 cdef object fun = bytes2str(cfunc) 331 const char *cfunc, 340 return traceback(comm, line, cfunc, cfile, n, p, mess, ctx) 342 return PetscTBEH(comm, line, cfunc, cfile, n, p, mess, ctx)
|
| H A D | Space.pyx | 997 cdef PetscInt cfunc = asInt(func) 998 CHKERR(PetscDualSpaceSimpleSetFunctional(self.dualspace, cfunc, functional.quad))
|
| /petsc/src/snes/utils/dm/ |
| H A D | dmadapt.c | 412 PetscErrorCode (*cfunc)(PetscViewer, PetscViewerFormat, void *, PetscViewerAndFormat **); in DMAdaptorMonitorSetFromOptions() local 430 PetscCall(PetscFunctionListFind(DMAdaptorMonitorCreateList, key, &cfunc)); in DMAdaptorMonitorSetFromOptions() 432 if (!cfunc) cfunc = PetscViewerAndFormatCreate_Internal; in DMAdaptorMonitorSetFromOptions() 435 PetscCall((*cfunc)(viewer, format, ctx, &vf)); in DMAdaptorMonitorSetFromOptions()
|
| /petsc/src/dm/impls/plex/ |
| H A D | plexfem.c | 3659 PetscQuadrature cfunc; in DMPlexComputeInjectorFEM() local 3664 PetscCall(PetscDualSpaceGetFunctional(QC, c, &cfunc)); in DMPlexComputeInjectorFEM() 3665 PetscCall(PetscQuadratureGetData(cfunc, NULL, &NqcC, &NpC, &cqpoints, &cqweights)); in DMPlexComputeInjectorFEM()
|