Lines Matching refs:CeedCallBackend
27 CeedCallBackend(CeedQFunctionGetData(qf, &impl)); in CeedQFunctionApply_Memcheck()
28 CeedCallBackend(CeedQFunctionGetContextData(qf, CEED_MEM_HOST, &ctx_data)); in CeedQFunctionApply_Memcheck()
29 CeedCallBackend(CeedQFunctionGetUserFunction(qf, &f)); in CeedQFunctionApply_Memcheck()
30 CeedCallBackend(CeedQFunctionGetNumArgs(qf, &num_in, &num_out)); in CeedQFunctionApply_Memcheck()
37 CeedCallBackend(CeedVectorGetArrayRead(U[i], CEED_MEM_HOST, &impl->inputs[i])); in CeedQFunctionApply_Memcheck()
39 CeedCallBackend(CeedVectorGetLength(U[i], &len)); in CeedQFunctionApply_Memcheck()
50 CeedCallBackend(CeedVectorGetArrayWrite(V[i], CEED_MEM_HOST, &impl->outputs[i])); in CeedQFunctionApply_Memcheck()
52 CeedCallBackend(CeedVectorGetLength(V[i], &len)); in CeedQFunctionApply_Memcheck()
60 CeedCallBackend(f(ctx_data, Q, impl->inputs, impl->outputs)); in CeedQFunctionApply_Memcheck()
64 CeedCallBackend(CeedVectorRestoreArrayRead(U[i], &impl->inputs[i])); in CeedQFunctionApply_Memcheck()
72 CeedCallBackend(CeedQFunctionGetSourcePath(qf, &kernel_path)); in CeedQFunctionApply_Memcheck()
73 CeedCallBackend(CeedQFunctionGetKernelName(qf, &kernel_name)); in CeedQFunctionApply_Memcheck()
74 CeedCallBackend(CeedQFunctionGetFields(qf, NULL, NULL, NULL, &output_fields)); in CeedQFunctionApply_Memcheck()
80 CeedCallBackend(CeedQFunctionFieldGetSize(output_fields[i], &field_size)); in CeedQFunctionApply_Memcheck()
81 CeedCallBackend(CeedQFunctionFieldGetName(output_fields[i], &field_name)); in CeedQFunctionApply_Memcheck()
87 CeedCallBackend(CeedVectorRestoreArray(V[i], &impl->outputs[i])); in CeedQFunctionApply_Memcheck()
91 CeedCallBackend(CeedQFunctionRestoreContextData(qf, &ctx_data)); in CeedQFunctionApply_Memcheck()
101 CeedCallBackend(CeedQFunctionGetData(qf, &impl)); in CeedQFunctionDestroy_Memcheck()
102 CeedCallBackend(CeedFree(&impl->inputs)); in CeedQFunctionDestroy_Memcheck()
103 CeedCallBackend(CeedFree(&impl->outputs)); in CeedQFunctionDestroy_Memcheck()
104 CeedCallBackend(CeedFree(&impl)); in CeedQFunctionDestroy_Memcheck()
115 CeedCallBackend(CeedQFunctionGetCeed(qf, &ceed)); in CeedQFunctionCreate_Memcheck()
116 CeedCallBackend(CeedCalloc(1, &impl)); in CeedQFunctionCreate_Memcheck()
117 CeedCallBackend(CeedCalloc(CEED_FIELD_MAX, &impl->inputs)); in CeedQFunctionCreate_Memcheck()
118 CeedCallBackend(CeedCalloc(CEED_FIELD_MAX, &impl->outputs)); in CeedQFunctionCreate_Memcheck()
119 CeedCallBackend(CeedQFunctionSetData(qf, impl)); in CeedQFunctionCreate_Memcheck()
120 …CeedCallBackend(CeedSetBackendFunction(ceed, "QFunction", qf, "Apply", CeedQFunctionApply_Memcheck… in CeedQFunctionCreate_Memcheck()
121 …CeedCallBackend(CeedSetBackendFunction(ceed, "QFunction", qf, "Destroy", CeedQFunctionDestroy_Memc… in CeedQFunctionCreate_Memcheck()
122 CeedCallBackend(CeedDestroy(&ceed)); in CeedQFunctionCreate_Memcheck()