| /libCEED/interface/ |
| H A D | ceed-qfunction.c | 127 …ieldView(CeedQFunctionField field, CeedInt field_number, bool in, const char *tabs, FILE *stream) { in CeedQFunctionFieldView() argument 141 tabs, inout, field_number, tabs, field_name, tabs, size, tabs, CeedEvalModes[eval_mode]); in CeedQFunctionFieldView() 1083 char *tabs = NULL; in CeedQFunctionView() local 1090 CeedCall(CeedCalloc(CEED_TAB_WIDTH * num_tabs + 1, &tabs)); in CeedQFunctionView() 1091 for (CeedInt i = 0; i < CEED_TAB_WIDTH * num_tabs; i++) tabs[i] = ' '; in CeedQFunctionView() 1095 fprintf(stream, "%s%sCeedQFunction - %s\n", tabs, qf->is_gallery ? "Gallery " : "User ", name); in CeedQFunctionView() 1097 …fprintf(stream, "%s %" CeedInt_FMT " input field%s:\n", tabs, qf->num_input_fields, qf->num_input… in CeedQFunctionView() 1099 CeedCall(CeedQFunctionFieldView(qf->input_fields[i], i, 1, tabs, stream)); in CeedQFunctionView() 1102 …fprintf(stream, "%s %" CeedInt_FMT " output field%s:\n", tabs, qf->num_output_fields, qf->num_out… in CeedQFunctionView() 1104 CeedCall(CeedQFunctionFieldView(qf->output_fields[i], i, 0, tabs, stream)); in CeedQFunctionView() [all …]
|
| H A D | ceed-operator.c | 98 …Field op_field, CeedQFunctionField qf_field, CeedInt field_number, const char *tabs, bool is_input, in CeedOperatorFieldView() argument 115 tabs, field_type, field_number, tabs, field_name); in CeedOperatorFieldView() 116 fprintf(stream, "%s Size: %" CeedInt_FMT "\n", tabs, size); in CeedOperatorFieldView() 117 fprintf(stream, "%s EvalMode: %s\n", tabs, CeedEvalModes[eval_mode]); in CeedOperatorFieldView() 118 if (basis == CEED_BASIS_NONE) fprintf(stream, "%s No basis\n", tabs); in CeedOperatorFieldView() 119 if (vec == CEED_VECTOR_ACTIVE) fprintf(stream, "%s Active vector\n", tabs); in CeedOperatorFieldView() 120 else if (vec == CEED_VECTOR_NONE) fprintf(stream, "%s No vector\n", tabs); in CeedOperatorFieldView() 138 int CeedOperatorSingleView(CeedOperator op, const char *tabs, FILE *stream) { in CeedOperatorSingleView() argument 160 …fprintf(stream, "%s %" CeedInt_FMT " elements with %" CeedInt_FMT " max points each\n", tabs, num… in CeedOperatorSingleView() 163 …" CeedInt_FMT " elements with %" CeedInt_FMT " quadrature points each\n", tabs, num_elem, num_qpts… in CeedOperatorSingleView() [all …]
|
| H A D | ceed-qfunctioncontext.c | 952 char *tabs = NULL; in CeedQFunctionContextView() local 958 CeedCall(CeedCalloc(CEED_TAB_WIDTH * num_tabs + 1, &tabs)); in CeedQFunctionContextView() 959 for (CeedInt i = 0; i < CEED_TAB_WIDTH * num_tabs; i++) tabs[i] = ' '; in CeedQFunctionContextView() 962 fprintf(stream, "%sCeedQFunctionContext\n", tabs); in CeedQFunctionContextView() 963 fprintf(stream, "%s Context Data Size: %zu\n", tabs, ctx->ctx_size); in CeedQFunctionContextView() 965 …fprintf(stream, "%s Labeled %s field: %s\n", tabs, CeedContextFieldTypes[ctx->field_labels[i]->ty… in CeedQFunctionContextView() 967 CeedCall(CeedFree(&tabs)); in CeedQFunctionContextView()
|
| H A D | ceed-vector.c | 1082 char *tabs = NULL; in CeedVectorViewRange() local 1092 CeedCall(CeedCalloc(CEED_TAB_WIDTH * num_tabs + 1, &tabs)); in CeedVectorViewRange() 1093 for (CeedInt i = 0; i < CEED_TAB_WIDTH * num_tabs; i++) tabs[i] = ' '; in CeedVectorViewRange() 1097 fprintf(stream, "%sCeedVector length %" CeedSize_FMT "\n", tabs, length); in CeedVectorViewRange() 1099 …%s stop: %" CeedSize_FMT "\n%s step: %" CeedInt_FMT "\n", tabs, start, tabs, stop, tabs, step); in CeedVectorViewRange() 1104 snprintf(fmt, sizeof fmt, "%s %s\n", tabs, fp_fmt ? fp_fmt : "%g"); in CeedVectorViewRange() 1108 if (stop != length) fprintf(stream, "%s ...\n", tabs); in CeedVectorViewRange() 1109 CeedCall(CeedFree(&tabs)); in CeedVectorViewRange()
|
| H A D | ceed-basis.c | 163 …e, const char *fp_fmt, CeedInt m, CeedInt n, const CeedScalar *a, const char *tabs, FILE *stream) { in CeedScalarView() argument 165 fprintf(stream, "%s %s:\n", tabs, name); in CeedScalarView() 170 fprintf(stream, "%s %-10s", tabs, padded_name); in CeedScalarView() 173 if (m > 1) fprintf(stream, "%s [%" CeedInt_FMT "]", tabs, i); in CeedScalarView() 1963 char *tabs = NULL; in CeedBasisView() local 1976 CeedCall(CeedCalloc(CEED_TAB_WIDTH * num_tabs + 1, &tabs)); in CeedBasisView() 1977 for (CeedInt i = 0; i < CEED_TAB_WIDTH * num_tabs; i++) tabs[i] = ' '; in CeedBasisView() 1981 …fprintf(stream, "%sCeedBasis in a %s on a %s element\n", tabs, CeedFESpaces[fe_space], CeedElemTop… in CeedBasisView() 1983 …fprintf(stream, "%s P: %" CeedInt_FMT "\n%s Q: %" CeedInt_FMT "\n", tabs, basis->P_1d, tabs, bas… in CeedBasisView() 1985 …fprintf(stream, "%s P: %" CeedInt_FMT "\n%s Q: %" CeedInt_FMT "\n", tabs, basis->P, tabs, basis-… in CeedBasisView() [all …]
|
| H A D | ceed.c | 1619 char *tabs = NULL; in CeedView() local 1628 CeedCall(CeedCalloc(CEED_TAB_WIDTH * num_tabs + 1, &tabs)); in CeedView() 1629 for (CeedInt i = 0; i < CEED_TAB_WIDTH * num_tabs; i++) tabs[i] = ' '; in CeedView() 1635 tabs, tabs, ceed->resource, tabs, CeedMemTypes[mem_type]); in CeedView() 1636 CeedCall(CeedFree(&tabs)); in CeedView()
|
| H A D | ceed-elemrestriction.c | 1782 char *tabs = NULL; in CeedElemRestrictionView() local 1789 CeedCall(CeedCalloc(CEED_TAB_WIDTH * num_tabs + 1, &tabs)); in CeedElemRestrictionView() 1790 for (CeedInt i = 0; i < CEED_TAB_WIDTH * num_tabs; i++) tabs[i] = ' '; in CeedElemRestrictionView() 1801 tabs, rstr->l_size, rstr->num_comp, rstr->num_elem, max_points); in CeedElemRestrictionView() 1813 …tabs, rstr->block_size > 1 ? "Blocked " : "", rstr->l_size, rstr->num_comp, rstr->num_elem, rstr->… in CeedElemRestrictionView() 1816 CeedCall(CeedFree(&tabs)); in CeedElemRestrictionView()
|
| /libCEED/ |
| H A D | Doxyfile | 266 # uses this value to replace tabs by spaces in code fragments. 1385 # consists of multiple levels of tabs that are statically embedded in every HTML 1617 # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top 1619 # it. Since the tabs in the index contain the same information as the navigation
|