Lines Matching refs:rstr_type

148 int CeedElemRestrictionGetType(CeedElemRestriction rstr, CeedRestrictionType *rstr_type) {  in CeedElemRestrictionGetType()  argument
149 *rstr_type = rstr->rstr_type; in CeedElemRestrictionGetType()
164 *is_strided = (rstr->rstr_type == CEED_RESTRICTION_STRIDED); in CeedElemRestrictionIsStrided()
179 *is_points = (rstr->rstr_type == CEED_RESTRICTION_POINTS); in CeedElemRestrictionIsAtPoints()
198 …CeedCheck(rstr_a->rstr_type == CEED_RESTRICTION_POINTS, CeedElemRestrictionReturnCeed(rstr_a), CEE… in CeedElemRestrictionAtPointsAreCompatible()
200 …CeedCheck(rstr_b->rstr_type == CEED_RESTRICTION_POINTS, CeedElemRestrictionReturnCeed(rstr_a), CEE… in CeedElemRestrictionAtPointsAreCompatible()
387 CeedRestrictionType rstr_type; in CeedElemRestrictionGetLLayout() local
389 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetLLayout()
390 …CeedCheck(rstr_type == CEED_RESTRICTION_STRIDED, CeedElemRestrictionReturnCeed(rstr), CEED_ERROR_M… in CeedElemRestrictionGetLLayout()
415 CeedRestrictionType rstr_type; in CeedElemRestrictionSetLLayout() local
417 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionSetLLayout()
418 …CeedCheck(rstr_type == CEED_RESTRICTION_STRIDED, CeedElemRestrictionReturnCeed(rstr), CEED_ERROR_M… in CeedElemRestrictionSetLLayout()
474 CeedRestrictionType rstr_type; in CeedElemRestrictionGetAtPointsElementOffset() local
476 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetAtPointsElementOffset()
477 …CeedCheck(rstr_type == CEED_RESTRICTION_POINTS, CeedElemRestrictionReturnCeed(rstr), CEED_ERROR_IN… in CeedElemRestrictionGetAtPointsElementOffset()
510 CeedRestrictionType rstr_type; in CeedElemRestrictionSetAtPointsEVectorSize() local
512 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionSetAtPointsEVectorSize()
513 …CeedCheck(rstr_type == CEED_RESTRICTION_POINTS, CeedElemRestrictionReturnCeed(rstr), CEED_ERROR_IN… in CeedElemRestrictionSetAtPointsEVectorSize()
578 CeedRestrictionType rstr_type; in CeedElemRestrictionGetFlopsEstimate() local
581 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetFlopsEstimate()
583 switch (rstr_type) { in CeedElemRestrictionGetFlopsEstimate()
599 switch (rstr_type) { in CeedElemRestrictionGetFlopsEstimate()
684 (*rstr)->rstr_type = CEED_RESTRICTION_STANDARD; in CeedElemRestrictionCreate()
741 (*rstr)->rstr_type = CEED_RESTRICTION_ORIENTED; in CeedElemRestrictionCreateOriented()
799 (*rstr)->rstr_type = CEED_RESTRICTION_CURL_ORIENTED; in CeedElemRestrictionCreateCurlOriented()
852 (*rstr)->rstr_type = CEED_RESTRICTION_STRIDED; in CeedElemRestrictionCreateStrided()
920 (*rstr)->rstr_type = CEED_RESTRICTION_POINTS; in CeedElemRestrictionCreateAtPoints()
985 (*rstr)->rstr_type = CEED_RESTRICTION_STANDARD; in CeedElemRestrictionCreateBlocked()
1055 (*rstr)->rstr_type = CEED_RESTRICTION_ORIENTED; in CeedElemRestrictionCreateBlockedOriented()
1128 (*rstr)->rstr_type = CEED_RESTRICTION_CURL_ORIENTED; in CeedElemRestrictionCreateBlockedCurlOriented()
1185 (*rstr)->rstr_type = CEED_RESTRICTION_STRIDED; in CeedElemRestrictionCreateBlockedStrided()
1531 CeedRestrictionType rstr_type; in CeedElemRestrictionGetNumPoints() local
1533 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetNumPoints()
1534 …CeedCheck(rstr_type == CEED_RESTRICTION_POINTS, CeedElemRestrictionReturnCeed(rstr), CEED_ERROR_IN… in CeedElemRestrictionGetNumPoints()
1554 CeedRestrictionType rstr_type; in CeedElemRestrictionGetNumPointsInElement() local
1557 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetNumPointsInElement()
1558 …CeedCheck(rstr_type == CEED_RESTRICTION_POINTS, CeedElemRestrictionReturnCeed(rstr), CEED_ERROR_IN… in CeedElemRestrictionGetNumPointsInElement()
1580 CeedRestrictionType rstr_type; in CeedElemRestrictionGetMinMaxPointsInElement() local
1582 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetMinMaxPointsInElement()
1583 …CeedCheck(rstr_type == CEED_RESTRICTION_POINTS, CeedElemRestrictionReturnCeed(rstr), CEED_ERROR_IN… in CeedElemRestrictionGetMinMaxPointsInElement()
1783 CeedRestrictionType rstr_type; in CeedElemRestrictionView() local
1793 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionView()
1794 if (rstr_type == CEED_RESTRICTION_POINTS) { in CeedElemRestrictionView()