Home
last modified time | relevance | path

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

/libCEED/interface/
H A Dceed-qfunctioncontext.c39 if (!strcmp(ctx->field_labels[i]->name, field_name)) *field_index = i; in CeedQFunctionContextGetFieldIndex()
70 CeedCall(CeedCalloc(1, &ctx->field_labels)); in CeedQFunctionContextRegisterGeneric()
73 CeedCall(CeedRealloc(2 * ctx->max_fields, &ctx->field_labels)); in CeedQFunctionContextRegisterGeneric()
76 CeedCall(CeedCalloc(1, &ctx->field_labels[ctx->num_fields])); in CeedQFunctionContextRegisterGeneric()
92 CeedCall(CeedStringAllocCopy(field_name, (char **)&ctx->field_labels[ctx->num_fields]->name)); in CeedQFunctionContextRegisterGeneric()
93 …CeedCall(CeedStringAllocCopy(field_description, (char **)&ctx->field_labels[ctx->num_fields]->desc… in CeedQFunctionContextRegisterGeneric()
94 ctx->field_labels[ctx->num_fields]->type = field_type; in CeedQFunctionContextRegisterGeneric()
95 ctx->field_labels[ctx->num_fields]->offset = field_offset; in CeedQFunctionContextRegisterGeneric()
96 ctx->field_labels[ctx->num_fields]->size = field_size * num_values; in CeedQFunctionContextRegisterGeneric()
97 ctx->field_labels[ctx->num_fields]->num_values = num_values; in CeedQFunctionContextRegisterGeneric()
[all …]
/libCEED/tests/
H A Dt407-qfunction.c36 const CeedContextFieldLabel *field_labels; in main() local
38 CeedQFunctionContextGetAllFieldLabels(ctx, &field_labels, &num_fields); in main()
45 CeedContextFieldLabelGetDescription(field_labels[0], &name, NULL, &num_values, NULL, &type); in main()
55 CeedContextFieldLabelGetDescription(field_labels[1], &name, NULL, &num_values, NULL, &type); in main()
65 CeedContextFieldLabelGetDescription(field_labels[2], &name, NULL, &num_values, NULL, &type); in main()
/libCEED/include/
H A Dceed-impl.h291 CeedContextFieldLabel *field_labels; member
/libCEED/include/ceed/
H A Dceed.h425 …llFieldLabels(CeedQFunctionContext ctx, const CeedContextFieldLabel **field_labels, CeedInt *num_f…
/libCEED/julia/LibCEED.jl/src/generated/
H A Dlibceed_bindings.jl633 function CeedQFunctionContextGetAllFieldLabels(ctx, field_labels, num_fields) argument
634 …eedQFunctionContext, Ptr{Ptr{CeedContextFieldLabel}}, Ptr{CeedInt}), ctx, field_labels, num_fields)