Lines Matching refs:func

206 PetscErrorCode DMSNESSetObjectiveLocal(DM dm, PetscErrorCode (*func)(DM, Vec, PetscReal *, void *),…  in DMSNESSetObjectiveLocal()
216 dmlocalsnes->objectivelocal = func; in DMSNESSetObjectiveLocal()
245 PetscErrorCode DMSNESSetFunctionLocal(DM dm, PetscErrorCode (*func)(DM dm, Vec x, Vec f, PetscCtx c… in DMSNESSetFunctionLocal()
255 dmlocalsnes->residuallocal = func; in DMSNESSetFunctionLocal()
284 PetscErrorCode DMSNESSetBoundaryLocal(DM dm, PetscErrorCode (*func)(DM dm, Vec X, PetscCtx ctx), Pe… in DMSNESSetBoundaryLocal()
294 dmlocalsnes->boundarylocal = func; in DMSNESSetBoundaryLocal()
320 PetscErrorCode DMSNESSetJacobianLocal(DM dm, PetscErrorCode (*func)(DM dm, Vec X, Mat J, Mat Jp, Pe… in DMSNESSetJacobianLocal()
330 dmlocalsnes->jacobianlocal = func; in DMSNESSetJacobianLocal()
353 PetscErrorCode DMSNESGetObjectiveLocal(DM dm, PetscErrorCode (**func)(DM, Vec, PetscReal *, void *)… in DMSNESGetObjectiveLocal()
362 if (func) *func = dmlocalsnes->objectivelocal; in DMSNESGetObjectiveLocal()
383 PetscErrorCode DMSNESGetFunctionLocal(DM dm, PetscErrorCode (**func)(DM, Vec, Vec, void *), PetscCt… in DMSNESGetFunctionLocal()
392 if (func) *func = dmlocalsnes->residuallocal; in DMSNESGetFunctionLocal()
413 PetscErrorCode DMSNESGetBoundaryLocal(DM dm, PetscErrorCode (**func)(DM, Vec, void *), PetscCtxRt c… in DMSNESGetBoundaryLocal()
422 if (func) *func = dmlocalsnes->boundarylocal; in DMSNESGetBoundaryLocal()
443 PetscErrorCode DMSNESGetJacobianLocal(DM dm, PetscErrorCode (**func)(DM, Vec, Mat, Mat, void *), Pe… in DMSNESGetJacobianLocal()
452 if (func) *func = dmlocalsnes->jacobianlocal; in DMSNESGetJacobianLocal()