Lines Matching refs:CeedCallBackend

23   CeedCallBackend(CeedQFunctionGetData(qf, &impl));  in CeedQFunctionApply_Ref()
24 CeedCallBackend(CeedQFunctionGetContextData(qf, CEED_MEM_HOST, &ctx_data)); in CeedQFunctionApply_Ref()
25 CeedCallBackend(CeedQFunctionGetUserFunction(qf, &f)); in CeedQFunctionApply_Ref()
26 CeedCallBackend(CeedQFunctionGetNumArgs(qf, &num_in, &num_out)); in CeedQFunctionApply_Ref()
29 CeedCallBackend(CeedVectorGetArrayRead(U[i], CEED_MEM_HOST, &impl->inputs[i])); in CeedQFunctionApply_Ref()
32 CeedCallBackend(CeedVectorGetArrayWrite(V[i], CEED_MEM_HOST, &impl->outputs[i])); in CeedQFunctionApply_Ref()
35 CeedCallBackend(f(ctx_data, Q, impl->inputs, impl->outputs)); in CeedQFunctionApply_Ref()
38 CeedCallBackend(CeedVectorRestoreArrayRead(U[i], &impl->inputs[i])); in CeedQFunctionApply_Ref()
41 CeedCallBackend(CeedVectorRestoreArray(V[i], &impl->outputs[i])); in CeedQFunctionApply_Ref()
43 CeedCallBackend(CeedQFunctionRestoreContextData(qf, &ctx_data)); in CeedQFunctionApply_Ref()
53 CeedCallBackend(CeedQFunctionGetData(qf, &impl)); in CeedQFunctionDestroy_Ref()
54 CeedCallBackend(CeedFree(&impl->inputs)); in CeedQFunctionDestroy_Ref()
55 CeedCallBackend(CeedFree(&impl->outputs)); in CeedQFunctionDestroy_Ref()
56 CeedCallBackend(CeedFree(&impl)); in CeedQFunctionDestroy_Ref()
67 CeedCallBackend(CeedQFunctionGetCeed(qf, &ceed)); in CeedQFunctionCreate_Ref()
68 CeedCallBackend(CeedCalloc(1, &impl)); in CeedQFunctionCreate_Ref()
69 CeedCallBackend(CeedCalloc(CEED_FIELD_MAX, &impl->inputs)); in CeedQFunctionCreate_Ref()
70 CeedCallBackend(CeedCalloc(CEED_FIELD_MAX, &impl->outputs)); in CeedQFunctionCreate_Ref()
71 CeedCallBackend(CeedQFunctionSetData(qf, impl)); in CeedQFunctionCreate_Ref()
72 CeedCallBackend(CeedSetBackendFunction(ceed, "QFunction", qf, "Apply", CeedQFunctionApply_Ref)); in CeedQFunctionCreate_Ref()
73CeedCallBackend(CeedSetBackendFunction(ceed, "QFunction", qf, "Destroy", CeedQFunctionDestroy_Ref)… in CeedQFunctionCreate_Ref()
74 CeedCallBackend(CeedDestroy(&ceed)); in CeedQFunctionCreate_Ref()