Lines Matching refs:applytranspose
21 PetscErrorCode (*applytranspose)(PC, Vec, Vec); member
207 …PetscCheck(shell->applytranspose, PetscObjectComm((PetscObject)pc), PETSC_ERR_USER, "No applytrans… in PCApplyTranspose_Shell()
209 PetscCallBack("PCSHELL callback applytranspose", (*shell->applytranspose)(pc, x, y)); in PCApplyTranspose_Shell()
397 static PetscErrorCode PCShellSetApplyTranspose_Shell(PC pc, PetscErrorCode (*applytranspose)(PC, Ve… in PCShellSetApplyTranspose_Shell()
402 shell->applytranspose = applytranspose; in PCShellSetApplyTranspose_Shell()
403 if (applytranspose) pc->ops->applytranspose = PCApplyTranspose_Shell; in PCShellSetApplyTranspose_Shell()
404 else pc->ops->applytranspose = NULL; in PCShellSetApplyTranspose_Shell()
697 PetscErrorCode PCShellSetApplyTranspose(PC pc, PetscErrorCode (*applytranspose)(PC pc, Vec xin, Vec… in PCShellSetApplyTranspose()
701 …od(pc, "PCShellSetApplyTranspose_C", (PC, PetscErrorCode (*)(PC, Vec, Vec)), (pc, applytranspose)); in PCShellSetApplyTranspose()
929 pc->ops->applytranspose = NULL; in PCCreate_Shell()
936 shell->applytranspose = NULL; in PCCreate_Shell()