Lines Matching refs:func

217 PetscErrorCode DMTSSetBoundaryLocal(DM dm, PetscErrorCode (*func)(DM, PetscReal, Vec, Vec, void *),…  in DMTSSetBoundaryLocal()
227 dmlocalts->boundarylocal = func; in DMTSSetBoundaryLocal()
250 PetscErrorCode DMTSGetIFunctionLocal(DM dm, PetscErrorCode (**func)(DM, PetscReal, Vec, Vec, Vec, v… in DMTSGetIFunctionLocal()
259 if (func) { in DMTSGetIFunctionLocal()
260 PetscAssertPointer(func, 2); in DMTSGetIFunctionLocal()
261 *func = dmlocalts->ifunctionlocal; in DMTSGetIFunctionLocal()
286 PetscErrorCode DMTSSetIFunctionLocal(DM dm, PetscErrorCode (*func)(DM, PetscReal, Vec, Vec, Vec, vo… in DMTSSetIFunctionLocal()
296 dmlocalts->ifunctionlocal = func; in DMTSSetIFunctionLocal()
322 PetscErrorCode DMTSGetIJacobianLocal(DM dm, PetscErrorCode (**func)(DM, PetscReal, Vec, Vec, PetscR… in DMTSGetIJacobianLocal()
331 if (func) { in DMTSGetIJacobianLocal()
332 PetscAssertPointer(func, 2); in DMTSGetIJacobianLocal()
333 *func = dmlocalts->ijacobianlocal; in DMTSGetIJacobianLocal()
356 PetscErrorCode DMTSSetIJacobianLocal(DM dm, PetscErrorCode (*func)(DM, PetscReal, Vec, Vec, PetscRe… in DMTSSetIJacobianLocal()
366 dmlocalts->ijacobianlocal = func; in DMTSSetIJacobianLocal()
391 PetscErrorCode DMTSGetRHSFunctionLocal(DM dm, PetscErrorCode (**func)(DM, PetscReal, Vec, Vec, void… in DMTSGetRHSFunctionLocal()
400 if (func) { in DMTSGetRHSFunctionLocal()
401 PetscAssertPointer(func, 2); in DMTSGetRHSFunctionLocal()
402 *func = dmlocalts->rhsfunctionlocal; in DMTSGetRHSFunctionLocal()
427 PetscErrorCode DMTSSetRHSFunctionLocal(DM dm, PetscErrorCode (*func)(DM, PetscReal, Vec, Vec, void … in DMTSSetRHSFunctionLocal()
437 dmlocalts->rhsfunctionlocal = func; in DMTSSetRHSFunctionLocal()