Lines Matching refs:PC
9 PC pc;
23 static PetscErrorCode PCApply_Composite_Multiplicative(PC pc, Vec x, Vec y) in PCApply_Composite_Multiplicative()
63 static PetscErrorCode PCApplyTranspose_Composite_Multiplicative(PC pc, Vec x, Vec y) in PCApplyTranspose_Composite_Multiplicative()
103 static PetscErrorCode PCApply_Composite_Special(PC pc, Vec x, Vec y) in PCApply_Composite_Special()
125 static PetscErrorCode PCApply_Composite_Additive(PC pc, Vec x, Vec y) in PCApply_Composite_Additive()
149 static PetscErrorCode PCApplyTranspose_Composite_Additive(PC pc, Vec x, Vec y) in PCApplyTranspose_Composite_Additive()
165 static PetscErrorCode PCSetUp_Composite(PC pc) in PCSetUp_Composite()
182 static PetscErrorCode PCSetUpOnBlocks_Composite(PC pc) in PCSetUpOnBlocks_Composite()
198 static PetscErrorCode PCReset_Composite(PC pc) in PCReset_Composite()
214 static PetscErrorCode PCDestroy_Composite(PC pc) in PCDestroy_Composite()
239 static PetscErrorCode PCSetFromOptions_Composite(PC pc, PetscOptionItems PetscOptionsObject) in PCSetFromOptions_Composite()
269 static PetscErrorCode PCView_Composite(PC pc, PetscViewer viewer) in PCView_Composite()
294 static PetscErrorCode PCCompositeSpecialSetAlpha_Composite(PC pc, PetscScalar alpha) in PCCompositeSpecialSetAlpha_Composite()
303 static PetscErrorCode PCCompositeSpecialSetAlphaMat_Composite(PC pc, Mat alpha_mat) in PCCompositeSpecialSetAlphaMat_Composite()
317 static PetscErrorCode PCCompositeSetType_Composite(PC pc, PCCompositeType type) in PCCompositeSetType_Composite()
336 static PetscErrorCode PCCompositeGetType_Composite(PC pc, PCCompositeType *type) in PCCompositeGetType_Composite()
345 static PetscErrorCode PCCompositeAddPC_Composite(PC pc, PC subpc) in PCCompositeAddPC_Composite()
380 static PetscErrorCode PCCompositeAddPCType_Composite(PC pc, PCType type) in PCCompositeAddPCType_Composite()
382 PC subpc; in PCCompositeAddPCType_Composite()
394 static PetscErrorCode PCCompositeGetNumberPC_Composite(PC pc, PetscInt *n) in PCCompositeGetNumberPC_Composite()
410 static PetscErrorCode PCCompositeGetPC_Composite(PC pc, PetscInt n, PC *subpc) in PCCompositeGetPC_Composite()
444 PetscErrorCode PCCompositeSetType(PC pc, PCCompositeType type) in PCCompositeSetType()
449 PetscTryMethod(pc, "PCCompositeSetType_C", (PC, PCCompositeType), (pc, type)); in PCCompositeSetType()
469 PetscErrorCode PCCompositeGetType(PC pc, PCCompositeType *type) in PCCompositeGetType()
473 PetscUseMethod(pc, "PCCompositeGetType_C", (PC, PCCompositeType *), (pc, type)); in PCCompositeGetType()
492 PetscErrorCode PCCompositeSpecialSetAlpha(PC pc, PetscScalar alpha) in PCCompositeSpecialSetAlpha()
497 PetscTryMethod(pc, "PCCompositeSpecialSetAlpha_C", (PC, PetscScalar), (pc, alpha)); in PCCompositeSpecialSetAlpha()
501 PetscErrorCode PCCompositeSpecialSetAlphaMat(PC pc, Mat alpha_mat) in PCCompositeSpecialSetAlphaMat()
505 PetscTryMethod(pc, "PCCompositeSpecialSetAlphaMat_C", (PC, Mat), (pc, alpha_mat)); in PCCompositeSpecialSetAlphaMat()
522 PetscErrorCode PCCompositeAddPCType(PC pc, PCType type) in PCCompositeAddPCType()
526 PetscTryMethod(pc, "PCCompositeAddPCType_C", (PC, PCType), (pc, type)); in PCCompositeAddPCType()
543 PetscErrorCode PCCompositeAddPC(PC pc, PC subpc) in PCCompositeAddPC()
548 PetscTryMethod(pc, "PCCompositeAddPC_C", (PC, PC), (pc, subpc)); in PCCompositeAddPC()
567 PetscErrorCode PCCompositeGetNumberPC(PC pc, PetscInt *num) in PCCompositeGetNumberPC()
572 PetscUseMethod(pc, "PCCompositeGetNumberPC_C", (PC, PetscInt *), (pc, num)); in PCCompositeGetNumberPC()
596 PetscErrorCode PCCompositeGetPC(PC pc, PetscInt n, PC *subpc) in PCCompositeGetPC()
601 PetscUseMethod(pc, "PCCompositeGetPC_C", (PC, PetscInt, PC *), (pc, n, subpc)); in PCCompositeGetPC()
628 PETSC_EXTERN PetscErrorCode PCCreate_Composite(PC pc) in PCCreate_Composite()