Home
last modified time | relevance | path

Searched refs:source_path_with_name (Results 1 – 1 of 1) sorted by relevance

/libCEED/interface/
H A Dceed-preconditioning.c38 char *source_path_with_name = NULL; in CeedQFunctionCreateFallback() local
50 CeedCall(CeedCalloc(path_len + name_len + 2, &source_path_with_name)); in CeedQFunctionCreateFallback()
51 memcpy(source_path_with_name, qf->source_path, path_len); in CeedQFunctionCreateFallback()
52 memcpy(&source_path_with_name[path_len], ":", 1); in CeedQFunctionCreateFallback()
53 memcpy(&source_path_with_name[path_len + 1], qf->kernel_name, name_len); in CeedQFunctionCreateFallback()
55 CeedCall(CeedStringAllocCopy(qf->user_source, &source_path_with_name)); in CeedQFunctionCreateFallback()
57 CeedCall(CeedCalloc(1, &source_path_with_name)); in CeedQFunctionCreateFallback()
66 …CeedCall(CeedQFunctionCreateInterior(fallback_ceed, vec_length, f, source_path_with_name, qf_fallb… in CeedQFunctionCreateFallback()
92 CeedCall(CeedFree(&source_path_with_name)); in CeedQFunctionCreateFallback()