Lines Matching refs:sub_operators
405 CeedOperator *sub_operators; in CeedOperatorContextSetGeneric() local
408 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorContextSetGeneric()
415 CeedCall(CeedOperatorGetContext(sub_operators[i], &ctx)); in CeedOperatorContextSetGeneric()
472 CeedOperator *sub_operators; in CeedOperatorContextGetGenericRead() local
475 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorContextGetGenericRead()
482 CeedCall(CeedOperatorGetContext(sub_operators[i], &ctx)); in CeedOperatorContextGetGenericRead()
535 CeedOperator *sub_operators; in CeedOperatorContextRestoreGenericRead() local
538 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorContextRestoreGenericRead()
545 CeedCall(CeedOperatorGetContext(sub_operators[i], &ctx)); in CeedOperatorContextRestoreGenericRead()
875 CeedCall(CeedCalloc(CEED_COMPOSITE_MAX, &(*op)->sub_operators)); in CeedOperatorCreateComposite()
1315 composite_op->sub_operators[composite_op->num_suboperators] = sub_op; in CeedOperatorCompositeAddSub()
1350 int CeedOperatorCompositeGetSubList(CeedOperator op, CeedOperator **sub_operators) { in CeedOperatorCompositeGetSubList() argument
1355 *sub_operators = op->sub_operators; in CeedOperatorCompositeGetSubList()
1462 CeedOperator *sub_operators; in CeedOperatorCheckReady() local
1464 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorCheckReady()
1466 CeedCall(CeedOperatorCheckReady(sub_operators[i])); in CeedOperatorCheckReady()
1516 CeedOperator *sub_operators; in CeedOperatorGetActiveVectorLengths() local
1519 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorGetActiveVectorLengths()
1523 … CeedCall(CeedOperatorGetActiveVectorLengths(sub_operators[i], &sub_input_size, &sub_output_size)); in CeedOperatorGetActiveVectorLengths()
1557 CeedCall(CeedOperatorSetQFunctionAssemblyReuse(op->sub_operators[i], reuse_assembly_data)); in CeedOperatorSetQFunctionAssemblyReuse()
1584 CeedOperator *sub_operators; in CeedOperatorSetQFunctionAssemblyDataUpdateNeeded() local
1587 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorSetQFunctionAssemblyDataUpdateNeeded()
1589 … CeedCall(CeedOperatorSetQFunctionAssemblyDataUpdateNeeded(sub_operators[i], needs_data_update)); in CeedOperatorSetQFunctionAssemblyDataUpdateNeeded()
1673 CeedOperator *sub_operators; in CeedOperatorView_Core() local
1676 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorView_Core()
1681 has_name = sub_operators[i]->name; in CeedOperatorView_Core()
1684 has_name ? sub_operators[i]->name : "", is_full ? ":" : ""); in CeedOperatorView_Core()
1685 if (is_full) CeedCall(CeedOperatorSingleView(sub_operators[i], tabs, stream)); in CeedOperatorView_Core()
1839 CeedOperator *sub_operators; in CeedOperatorGetFlopsEstimate() local
1840 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorGetFlopsEstimate()
1846 CeedCall(CeedOperatorGetFlopsEstimate(sub_operators[i], &suboperator_flops)); in CeedOperatorGetFlopsEstimate()
2011 CeedOperator *sub_operators; in CeedOperatorGetContextFieldLabel() local
2016 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorGetContextFieldLabel()
2021 if (sub_operators[i]->qf->ctx) { in CeedOperatorGetContextFieldLabel()
2024 …CeedCall(CeedQFunctionContextGetFieldLabel(sub_operators[i]->qf->ctx, field_name, &new_field_label… in CeedOperatorGetContextFieldLabel()
2316 CeedOperator *sub_operators; in CeedOperatorApplyAdd() local
2319 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorApplyAdd()
2321 CeedCall(CeedOperatorApplyAdd(sub_operators[i], in, out, request)); in CeedOperatorApplyAdd()
2357 CeedOperator *sub_operators; in CeedOperatorApplyAddActive() local
2360 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorApplyAddActive()
2367 … CeedCall(CeedOperatorGetFields(sub_operators[i], NULL, NULL, &num_output_fields, &output_fields)); in CeedOperatorApplyAddActive()
2415 CeedOperator *sub_operators; in CeedOperatorAssemblyDataStrip() local
2418 CeedCall(CeedOperatorCompositeGetSubList(op, &sub_operators)); in CeedOperatorAssemblyDataStrip()
2420 CeedCall(CeedQFunctionAssemblyDataDestroy(&sub_operators[i]->qf_assembled)); in CeedOperatorAssemblyDataStrip()
2421 CeedCall(CeedOperatorAssemblyDataDestroy(&sub_operators[i]->op_assembled)); in CeedOperatorAssemblyDataStrip()
2484 if ((*op)->sub_operators[i]) { in CeedOperatorDestroy()
2485 CeedCall(CeedOperatorDestroy(&(*op)->sub_operators[i])); in CeedOperatorDestroy()
2488 CeedCall(CeedFree(&(*op)->sub_operators)); in CeedOperatorDestroy()