Lines Matching refs:F
16 PetscErrorCode f(PetscReal t, Vec UV, Vec F) in f() argument
27 PetscCall(VecGetArrayWrite(F, &f)); in f()
30 PetscCall(VecRestoreArrayWrite(F, &f)); in f()
37 PetscErrorCode F(PetscReal t, Vec UV, Vec F) in F() argument
48 PetscCall(VecGetArrayWrite(F, &f)); in F()
51 PetscCall(VecRestoreArrayWrite(F, &f)); in F()
61 PetscErrorCode (*F)(PetscReal, Vec, Vec); member
93 ctx.F = F; in main()
127 PetscErrorCode TSFunction(TS ts, PetscReal t, Vec U, Vec F, void *actx) in TSFunction() argument
138 PetscCall((*ctx->f)(t, ctx->UV, F)); in TSFunction()
146 PetscErrorCode SNESFunction(SNES snes, Vec V, Vec F, void *actx) in SNESFunction() argument
153 PetscCall((*ctx->F)(ctx->t, ctx->UV, F)); in SNESFunction()