Searched refs:ctx_copy (Results 1 – 7 of 7) sorted by relevance
| /libCEED/tests/ |
| H A D | t402-qfunction.c | 40 CeedQFunctionContext ctx_copy = NULL; in main() local 47 CeedQFunctionContextReferenceCopy(ctx, &ctx_copy); in main() 48 CeedQFunctionContextSetNumViewTabs(ctx_copy, 1); in main() 49 CeedObjectView((CeedObject)ctx_copy, stdout); in main() 50 CeedObjectDestroy((CeedObject *)&ctx_copy); in main()
|
| H A D | t525-operator.c | 111 CeedQFunctionContext ctx_copy = NULL; in main() local 113 CeedOperatorGetContext(op_sub_1, &ctx_copy); in main() 114 if (ctx_copy != qf_ctx_sub_1) printf("Incorrect QFunctionContext retrieved"); in main() 115 CeedQFunctionContextDestroy(&ctx_copy); in main() 117 CeedOperatorGetContext(op_sub_2, &ctx_copy); // Destroys reference to qf_ctx_sub_1 in main() 118 if (ctx_copy != qf_ctx_sub_2) printf("Incorrect QFunctionContext retrieved"); in main() 119 CeedQFunctionContextDestroy(&ctx_copy); // Cleanup to prevent leak in main()
|
| /libCEED/examples/fluids/include/ |
| H A D | mat-ceed-impl.h | 38 …ED_EXTERN PetscErrorCode MatCeedContextReferenceCopy(MatCeedContext ctx, MatCeedContext *ctx_copy);
|
| /libCEED/interface/ |
| H A D | ceed-qfunctioncontext.c | 627 int CeedQFunctionContextReferenceCopy(CeedQFunctionContext ctx, CeedQFunctionContext *ctx_copy) { in CeedQFunctionContextReferenceCopy() argument 629 CeedCall(CeedQFunctionContextDestroy(ctx_copy)); in CeedQFunctionContextReferenceCopy() 630 *ctx_copy = ctx; in CeedQFunctionContextReferenceCopy()
|
| /libCEED/examples/fluids/src/ |
| H A D | mat-ceed.c | 1456 PetscErrorCode MatCeedContextReferenceCopy(MatCeedContext ctx, MatCeedContext *ctx_copy) { in MatCeedContextReferenceCopy() argument 1459 PetscCall(MatCeedContextDestroy(ctx_copy)); in MatCeedContextReferenceCopy() 1460 *ctx_copy = ctx; in MatCeedContextReferenceCopy()
|
| /libCEED/include/ceed/ |
| H A D | ceed.h | 412 …RN int CeedQFunctionContextReferenceCopy(CeedQFunctionContext ctx, CeedQFunctionContext *ctx_copy);
|
| /libCEED/julia/LibCEED.jl/src/generated/ |
| H A D | libceed_bindings.jl | 597 function CeedQFunctionContextReferenceCopy(ctx, ctx_copy) argument 598 …extReferenceCopy, libceed), Cint, (CeedQFunctionContext, Ptr{CeedQFunctionContext}), ctx, ctx_copy)
|