Lines Matching refs:rstr_points
156 CeedElemRestriction rstr_points; in CeedOperatorSingleView() local
158 CeedCall(CeedOperatorAtPointsGetPoints(op, &rstr_points, NULL)); in CeedOperatorSingleView()
159 CeedCall(CeedElemRestrictionGetMaxPointsInElement(rstr_points, &max_points)); in CeedOperatorSingleView()
161 CeedCall(CeedElemRestrictionDestroy(&rstr_points)); in CeedOperatorSingleView()
1079 int CeedOperatorAtPointsSetPoints(CeedOperator op, CeedElemRestriction rstr_points, CeedVector poin… in CeedOperatorAtPointsSetPoints() argument
1088 CeedCall(CeedElemRestrictionReferenceCopy(rstr_points, &op->first_points_rstr)); in CeedOperatorAtPointsSetPoints()
1092 …CeedCall(CeedElemRestrictionAtPointsAreCompatible(op->first_points_rstr, rstr_points, &are_compati… in CeedOperatorAtPointsSetPoints()
1097 CeedCall(CeedElemRestrictionReferenceCopy(rstr_points, &op->rstr_points)); in CeedOperatorAtPointsSetPoints()
1130 int CeedOperatorAtPointsGetPoints(CeedOperator op, CeedElemRestriction *rstr_points, CeedVector *po… in CeedOperatorAtPointsGetPoints() argument
1137 if (rstr_points) { in CeedOperatorAtPointsGetPoints()
1138 *rstr_points = NULL; in CeedOperatorAtPointsGetPoints()
1139 CeedCall(CeedElemRestrictionReferenceCopy(op->rstr_points, rstr_points)); in CeedOperatorAtPointsGetPoints()
1861 CeedElemRestriction rstr_points = NULL; in CeedOperatorGetFlopsEstimate() local
1863 CeedCall(CeedOperatorAtPointsGetPoints(op, &rstr_points, NULL)); in CeedOperatorGetFlopsEstimate()
1867 CeedCall(CeedElemRestrictionGetMaxPointsInElement(rstr_points, &num_points)); in CeedOperatorGetFlopsEstimate()
1873 CeedCall(CeedElemRestrictionGetNumPointsInElement(rstr_points, i, &points_in_elem)); in CeedOperatorGetFlopsEstimate()
1878 CeedCall(CeedElemRestrictionDestroy(&rstr_points)); in CeedOperatorGetFlopsEstimate()
2478 CeedCall(CeedElemRestrictionDestroy(&(*op)->rstr_points)); in CeedOperatorDestroy()