Lines Matching refs:CeedCall
112 CeedCall(CeedElemRestrictionView((CeedElemRestriction)rstr, stream)); in CeedElemRestrictionView_Object()
126 CeedCall(CeedElemRestrictionDestroy((CeedElemRestriction *)rstr)); in CeedElemRestrictionDestroy_Object()
203 CeedCall(CeedElemRestrictionGetNumElements(rstr_a, &num_elem_a)); in CeedElemRestrictionAtPointsAreCompatible()
204 CeedCall(CeedElemRestrictionGetNumElements(rstr_b, &num_elem_b)); in CeedElemRestrictionAtPointsAreCompatible()
205 CeedCall(CeedElemRestrictionGetNumPoints(rstr_a, &num_points_a)); in CeedElemRestrictionAtPointsAreCompatible()
206 CeedCall(CeedElemRestrictionGetNumPoints(rstr_b, &num_points_b)); in CeedElemRestrictionAtPointsAreCompatible()
215 CeedCall(CeedElemRestrictionGetOffsets(rstr_a, CEED_MEM_HOST, &offsets_a)); in CeedElemRestrictionAtPointsAreCompatible()
216 CeedCall(CeedElemRestrictionGetOffsets(rstr_b, CEED_MEM_HOST, &offsets_b)); in CeedElemRestrictionAtPointsAreCompatible()
218 CeedCall(CeedElemRestrictionRestoreOffsets(rstr_a, &offsets_a)); in CeedElemRestrictionAtPointsAreCompatible()
219 CeedCall(CeedElemRestrictionRestoreOffsets(rstr_b, &offsets_b)); in CeedElemRestrictionAtPointsAreCompatible()
271 CeedCall(CeedElemRestrictionGetOffsets(rstr->rstr_base, mem_type, offsets)); in CeedElemRestrictionGetOffsets()
275 CeedCall(rstr->GetOffsets(rstr, mem_type, offsets)); in CeedElemRestrictionGetOffsets()
293 CeedCall(CeedElemRestrictionRestoreOffsets(rstr->rstr_base, offsets)); in CeedElemRestrictionRestoreOffsets()
316 CeedCall(rstr->GetOrientations(rstr, mem_type, orients)); in CeedElemRestrictionGetOrientations()
352 CeedCall(rstr->GetCurlOrientations(rstr, mem_type, curl_orients)); in CeedElemRestrictionGetCurlOrientations()
389 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetLLayout()
392 CeedCall(CeedElemRestrictionHasBackendStrides(rstr, &has_backend_strides)); in CeedElemRestrictionGetLLayout()
397 CeedCall(CeedElemRestrictionGetStrides(rstr, layout)); in CeedElemRestrictionGetLLayout()
417 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionSetLLayout()
476 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetAtPointsElementOffset()
482 CeedCall(rstr->GetAtPointsElementOffset(rstr, elem, elem_offset)); in CeedElemRestrictionGetAtPointsElementOffset()
488 CeedCall(CeedElemRestrictionGetNumComponents(rstr, &num_comp)); in CeedElemRestrictionGetAtPointsElementOffset()
492 CeedCall(CeedElemRestrictionGetNumPointsInElement(rstr, i, &num_points)); in CeedElemRestrictionGetAtPointsElementOffset()
512 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionSetAtPointsEVectorSize()
563 CeedCall(CeedObjectReference((CeedObject)rstr)); in CeedElemRestrictionReference()
580 CeedCall(CeedElemRestrictionGetEVectorSize(rstr, &e_size)); in CeedElemRestrictionGetFlopsEstimate()
581 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetFlopsEstimate()
662 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "ElemRestriction")); in CeedElemRestrictionCreate()
664 …CeedCall(CeedElemRestrictionCreate(delegate, num_elem, elem_size, num_comp, comp_stride, l_size, m… in CeedElemRestrictionCreate()
665 CeedCall(CeedDestroy(&delegate)); in CeedElemRestrictionCreate()
674 CeedCall(CeedCalloc(1, rstr)); in CeedElemRestrictionCreate()
675 …CeedCall(CeedObjectCreate(ceed, CeedElemRestrictionView_Object, CeedElemRestrictionDestroy_Object,… in CeedElemRestrictionCreate()
685 CeedCall(ceed->ElemRestrictionCreate(mem_type, copy_mode, offsets, NULL, NULL, *rstr)); in CeedElemRestrictionCreate()
718 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "ElemRestriction")); in CeedElemRestrictionCreateOriented()
720 …CeedCall(CeedElemRestrictionCreateOriented(delegate, num_elem, elem_size, num_comp, comp_stride, l… in CeedElemRestrictionCreateOriented()
722 CeedCall(CeedDestroy(&delegate)); in CeedElemRestrictionCreateOriented()
731 CeedCall(CeedCalloc(1, rstr)); in CeedElemRestrictionCreateOriented()
732 …CeedCall(CeedObjectCreate(ceed, CeedElemRestrictionView_Object, CeedElemRestrictionDestroy_Object,… in CeedElemRestrictionCreateOriented()
742 CeedCall(ceed->ElemRestrictionCreate(mem_type, copy_mode, offsets, orients, NULL, *rstr)); in CeedElemRestrictionCreateOriented()
776 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "ElemRestriction")); in CeedElemRestrictionCreateCurlOriented()
778 …CeedCall(CeedElemRestrictionCreateCurlOriented(delegate, num_elem, elem_size, num_comp, comp_strid… in CeedElemRestrictionCreateCurlOriented()
780 CeedCall(CeedDestroy(&delegate)); in CeedElemRestrictionCreateCurlOriented()
789 CeedCall(CeedCalloc(1, rstr)); in CeedElemRestrictionCreateCurlOriented()
790 …CeedCall(CeedObjectCreate(ceed, CeedElemRestrictionView_Object, CeedElemRestrictionDestroy_Object,… in CeedElemRestrictionCreateCurlOriented()
800 CeedCall(ceed->ElemRestrictionCreate(mem_type, copy_mode, offsets, NULL, curl_orients, *rstr)); in CeedElemRestrictionCreateCurlOriented()
829 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "ElemRestriction")); in CeedElemRestrictionCreateStrided()
831 …CeedCall(CeedElemRestrictionCreateStrided(delegate, num_elem, elem_size, num_comp, l_size, strides… in CeedElemRestrictionCreateStrided()
832 CeedCall(CeedDestroy(&delegate)); in CeedElemRestrictionCreateStrided()
843 CeedCall(CeedCalloc(1, rstr)); in CeedElemRestrictionCreateStrided()
844 …CeedCall(CeedObjectCreate(ceed, CeedElemRestrictionView_Object, CeedElemRestrictionDestroy_Object,… in CeedElemRestrictionCreateStrided()
853 CeedCall(CeedMalloc(3, &(*rstr)->strides)); in CeedElemRestrictionCreateStrided()
855 CeedCall(ceed->ElemRestrictionCreate(CEED_MEM_HOST, CEED_OWN_POINTER, NULL, NULL, NULL, *rstr)); in CeedElemRestrictionCreateStrided()
896 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "ElemRestriction")); in CeedElemRestrictionCreateAtPoints()
898 …CeedCall(CeedElemRestrictionCreateAtPoints(delegate, num_elem, num_points, num_comp, l_size, mem_t… in CeedElemRestrictionCreateAtPoints()
899 CeedCall(CeedDestroy(&delegate)); in CeedElemRestrictionCreateAtPoints()
910 CeedCall(CeedCalloc(1, rstr)); in CeedElemRestrictionCreateAtPoints()
911 …CeedCall(CeedObjectCreate(ceed, CeedElemRestrictionView_Object, CeedElemRestrictionDestroy_Object,… in CeedElemRestrictionCreateAtPoints()
921 CeedCall(ceed->ElemRestrictionCreateAtPoints(mem_type, copy_mode, offsets, NULL, NULL, *rstr)); in CeedElemRestrictionCreateAtPoints()
958 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "ElemRestriction")); in CeedElemRestrictionCreateBlocked()
960 …CeedCall(CeedElemRestrictionCreateBlocked(delegate, num_elem, elem_size, block_size, num_comp, com… in CeedElemRestrictionCreateBlocked()
962 CeedCall(CeedDestroy(&delegate)); in CeedElemRestrictionCreateBlocked()
972 CeedCall(CeedCalloc(num_block * block_size * elem_size, &block_offsets)); in CeedElemRestrictionCreateBlocked()
973 …CeedCall(CeedPermutePadOffsets(offsets, block_offsets, num_block, num_elem, block_size, elem_size)… in CeedElemRestrictionCreateBlocked()
975 CeedCall(CeedCalloc(1, rstr)); in CeedElemRestrictionCreateBlocked()
976 …CeedCall(CeedObjectCreate(ceed, CeedElemRestrictionView_Object, CeedElemRestrictionDestroy_Object,… in CeedElemRestrictionCreateBlocked()
986 …CeedCall(ceed->ElemRestrictionCreateBlocked(CEED_MEM_HOST, CEED_OWN_POINTER, (const CeedInt *)bloc… in CeedElemRestrictionCreateBlocked()
987 if (copy_mode == CEED_OWN_POINTER) CeedCall(CeedFree(&offsets)); in CeedElemRestrictionCreateBlocked()
1027 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "ElemRestriction")); in CeedElemRestrictionCreateBlockedOriented()
1029 …CeedCall(CeedElemRestrictionCreateBlockedOriented(delegate, num_elem, elem_size, block_size, num_c… in CeedElemRestrictionCreateBlockedOriented()
1031 CeedCall(CeedDestroy(&delegate)); in CeedElemRestrictionCreateBlockedOriented()
1040 CeedCall(CeedCalloc(num_block * block_size * elem_size, &block_offsets)); in CeedElemRestrictionCreateBlockedOriented()
1041 CeedCall(CeedCalloc(num_block * block_size * elem_size, &block_orients)); in CeedElemRestrictionCreateBlockedOriented()
1042 …CeedCall(CeedPermutePadOffsets(offsets, block_offsets, num_block, num_elem, block_size, elem_size)… in CeedElemRestrictionCreateBlockedOriented()
1043 …CeedCall(CeedPermutePadOrients(orients, block_orients, num_block, num_elem, block_size, elem_size)… in CeedElemRestrictionCreateBlockedOriented()
1045 CeedCall(CeedCalloc(1, rstr)); in CeedElemRestrictionCreateBlockedOriented()
1046 …CeedCall(CeedObjectCreate(ceed, CeedElemRestrictionView_Object, CeedElemRestrictionDestroy_Object,… in CeedElemRestrictionCreateBlockedOriented()
1056 …CeedCall(ceed->ElemRestrictionCreateBlocked(CEED_MEM_HOST, CEED_OWN_POINTER, (const CeedInt *)bloc… in CeedElemRestrictionCreateBlockedOriented()
1058 if (copy_mode == CEED_OWN_POINTER) CeedCall(CeedFree(&offsets)); in CeedElemRestrictionCreateBlockedOriented()
1099 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "ElemRestriction")); in CeedElemRestrictionCreateBlockedCurlOriented()
1101 …CeedCall(CeedElemRestrictionCreateBlockedCurlOriented(delegate, num_elem, elem_size, block_size, n… in CeedElemRestrictionCreateBlockedCurlOriented()
1103 CeedCall(CeedDestroy(&delegate)); in CeedElemRestrictionCreateBlockedCurlOriented()
1113 CeedCall(CeedCalloc(num_block * block_size * elem_size, &block_offsets)); in CeedElemRestrictionCreateBlockedCurlOriented()
1114 CeedCall(CeedCalloc(num_block * block_size * 3 * elem_size, &block_curl_orients)); in CeedElemRestrictionCreateBlockedCurlOriented()
1115 …CeedCall(CeedPermutePadOffsets(offsets, block_offsets, num_block, num_elem, block_size, elem_size)… in CeedElemRestrictionCreateBlockedCurlOriented()
1116 …CeedCall(CeedPermutePadCurlOrients(curl_orients, block_curl_orients, num_block, num_elem, block_si… in CeedElemRestrictionCreateBlockedCurlOriented()
1118 CeedCall(CeedCalloc(1, rstr)); in CeedElemRestrictionCreateBlockedCurlOriented()
1119 …CeedCall(CeedObjectCreate(ceed, CeedElemRestrictionView_Object, CeedElemRestrictionDestroy_Object,… in CeedElemRestrictionCreateBlockedCurlOriented()
1129 …CeedCall(ceed->ElemRestrictionCreateBlocked(CEED_MEM_HOST, CEED_OWN_POINTER, (const CeedInt *)bloc… in CeedElemRestrictionCreateBlockedCurlOriented()
1131 if (copy_mode == CEED_OWN_POINTER) CeedCall(CeedFree(&offsets)); in CeedElemRestrictionCreateBlockedCurlOriented()
1161 CeedCall(CeedGetObjectDelegate(ceed, &delegate, "ElemRestriction")); in CeedElemRestrictionCreateBlockedStrided()
1163 …CeedCall(CeedElemRestrictionCreateBlockedStrided(delegate, num_elem, elem_size, block_size, num_co… in CeedElemRestrictionCreateBlockedStrided()
1164 CeedCall(CeedDestroy(&delegate)); in CeedElemRestrictionCreateBlockedStrided()
1176 CeedCall(CeedCalloc(1, rstr)); in CeedElemRestrictionCreateBlockedStrided()
1177 …CeedCall(CeedObjectCreate(ceed, CeedElemRestrictionView_Object, CeedElemRestrictionDestroy_Object,… in CeedElemRestrictionCreateBlockedStrided()
1186 CeedCall(CeedMalloc(3, &(*rstr)->strides)); in CeedElemRestrictionCreateBlockedStrided()
1188 …CeedCall(ceed->ElemRestrictionCreateBlocked(CEED_MEM_HOST, CEED_OWN_POINTER, NULL, NULL, NULL, *rs… in CeedElemRestrictionCreateBlockedStrided()
1205 CeedCall(CeedCalloc(1, rstr_unsigned)); in CeedElemRestrictionCreateUnsignedCopy()
1209 …CeedCall(CeedObjectCreate(CeedElemRestrictionReturnCeed(rstr), CeedElemRestrictionView_Object, Cee… in CeedElemRestrictionCreateUnsignedCopy()
1213 CeedCall(CeedMalloc(3, &(*rstr_unsigned)->strides)); in CeedElemRestrictionCreateUnsignedCopy()
1216 CeedCall(CeedElemRestrictionReferenceCopy(rstr, &(*rstr_unsigned)->rstr_base)); in CeedElemRestrictionCreateUnsignedCopy()
1236 CeedCall(CeedCalloc(1, rstr_unoriented)); in CeedElemRestrictionCreateUnorientedCopy()
1240 …CeedCall(CeedObjectCreate(CeedElemRestrictionReturnCeed(rstr), CeedElemRestrictionView_Object, Cee… in CeedElemRestrictionCreateUnorientedCopy()
1244 CeedCall(CeedMalloc(3, &(*rstr_unoriented)->strides)); in CeedElemRestrictionCreateUnorientedCopy()
1247 CeedCall(CeedElemRestrictionReferenceCopy(rstr, &(*rstr_unoriented)->rstr_base)); in CeedElemRestrictionCreateUnorientedCopy()
1270 if (rstr != CEED_ELEMRESTRICTION_NONE) CeedCall(CeedElemRestrictionReference(rstr)); in CeedElemRestrictionReferenceCopy()
1271 CeedCall(CeedElemRestrictionDestroy(rstr_copy)); in CeedElemRestrictionReferenceCopy()
1291 CeedCall(CeedElemRestrictionGetCeed(rstr, &ceed)); in CeedElemRestrictionCreateVector()
1292 CeedCall(CeedElemRestrictionGetLVectorSize(rstr, &l_size)); in CeedElemRestrictionCreateVector()
1293 CeedCall(CeedElemRestrictionGetEVectorSize(rstr, &e_size)); in CeedElemRestrictionCreateVector()
1294 if (l_vec) CeedCall(CeedVectorCreate(ceed, l_size, l_vec)); in CeedElemRestrictionCreateVector()
1295 if (e_vec) CeedCall(CeedVectorCreate(ceed, e_size, e_vec)); in CeedElemRestrictionCreateVector()
1296 CeedCall(CeedDestroy(&ceed)); in CeedElemRestrictionCreateVector()
1319 CeedCall(CeedElemRestrictionGetEVectorSize(rstr, &min_ru_len)); in CeedElemRestrictionApply()
1320 CeedCall(CeedElemRestrictionGetLVectorSize(rstr, &min_u_len)); in CeedElemRestrictionApply()
1322 CeedCall(CeedElemRestrictionGetEVectorSize(rstr, &min_u_len)); in CeedElemRestrictionApply()
1323 CeedCall(CeedElemRestrictionGetLVectorSize(rstr, &min_ru_len)); in CeedElemRestrictionApply()
1325 CeedCall(CeedVectorGetLength(u, &len)); in CeedElemRestrictionApply()
1329 CeedCall(CeedVectorGetLength(ru, &len)); in CeedElemRestrictionApply()
1333 CeedCall(CeedElemRestrictionGetNumElements(rstr, &num_elem)); in CeedElemRestrictionApply()
1334 if (num_elem > 0) CeedCall(rstr->Apply(rstr, t_mode, u, ru, request)); in CeedElemRestrictionApply()
1364 CeedCall(CeedElemRestrictionGetLVectorSize(rstr, &min_u_len)); in CeedElemRestrictionApplyAtPointsInElement()
1365 CeedCall(CeedElemRestrictionGetNumPointsInElement(rstr, elem, &num_points)); in CeedElemRestrictionApplyAtPointsInElement()
1366 CeedCall(CeedElemRestrictionGetNumComponents(rstr, &num_comp)); in CeedElemRestrictionApplyAtPointsInElement()
1371 CeedCall(CeedElemRestrictionGetNumPointsInElement(rstr, elem, &num_points)); in CeedElemRestrictionApplyAtPointsInElement()
1372 CeedCall(CeedElemRestrictionGetNumComponents(rstr, &num_comp)); in CeedElemRestrictionApplyAtPointsInElement()
1374 CeedCall(CeedElemRestrictionGetLVectorSize(rstr, &min_ru_len)); in CeedElemRestrictionApplyAtPointsInElement()
1376 CeedCall(CeedVectorGetLength(u, &len)); in CeedElemRestrictionApplyAtPointsInElement()
1381 CeedCall(CeedVectorGetLength(ru, &len)); in CeedElemRestrictionApplyAtPointsInElement()
1386 CeedCall(CeedElemRestrictionGetNumElements(rstr, &num_elem)); in CeedElemRestrictionApplyAtPointsInElement()
1389 if (num_elem > 0) CeedCall(rstr->ApplyAtPointsInElement(rstr, elem, t_mode, u, ru, request)); in CeedElemRestrictionApplyAtPointsInElement()
1416 CeedCall(CeedElemRestrictionGetBlockSize(rstr, &block_size)); in CeedElemRestrictionApplyBlock()
1420 CeedCall(CeedElemRestrictionGetElementSize(rstr, &elem_size)); in CeedElemRestrictionApplyBlock()
1421 CeedCall(CeedElemRestrictionGetNumComponents(rstr, &num_comp)); in CeedElemRestrictionApplyBlock()
1422 CeedCall(CeedElemRestrictionGetLVectorSize(rstr, &min_u_len)); in CeedElemRestrictionApplyBlock()
1427 CeedCall(CeedElemRestrictionGetElementSize(rstr, &elem_size)); in CeedElemRestrictionApplyBlock()
1428 CeedCall(CeedElemRestrictionGetNumComponents(rstr, &num_comp)); in CeedElemRestrictionApplyBlock()
1429 CeedCall(CeedElemRestrictionGetLVectorSize(rstr, &min_ru_len)); in CeedElemRestrictionApplyBlock()
1432 CeedCall(CeedVectorGetLength(u, &len)); in CeedElemRestrictionApplyBlock()
1436 CeedCall(CeedVectorGetLength(ru, &len)); in CeedElemRestrictionApplyBlock()
1440 CeedCall(CeedElemRestrictionGetNumElements(rstr, &num_elem)); in CeedElemRestrictionApplyBlock()
1444 CeedCall(rstr->ApplyBlock(rstr, block, t_mode, u, ru, request)); in CeedElemRestrictionApplyBlock()
1459 CeedCall(CeedObjectGetCeed((CeedObject)rstr, ceed)); in CeedElemRestrictionGetCeed()
1533 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetNumPoints()
1557 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetNumPointsInElement()
1561 CeedCall(CeedElemRestrictionGetOffsets(rstr, CEED_MEM_HOST, &offsets)); in CeedElemRestrictionGetNumPointsInElement()
1563 CeedCall(CeedElemRestrictionRestoreOffsets(rstr, &offsets)); in CeedElemRestrictionGetNumPointsInElement()
1582 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionGetMinMaxPointsInElement()
1586 CeedCall(CeedElemRestrictionGetNumElements(rstr, &num_elem)); in CeedElemRestrictionGetMinMaxPointsInElement()
1596 CeedCall(CeedElemRestrictionGetNumPointsInElement(rstr, 0, &num_points)); in CeedElemRestrictionGetMinMaxPointsInElement()
1600 CeedCall(CeedElemRestrictionGetNumPointsInElement(rstr, e, &num_points)); in CeedElemRestrictionGetMinMaxPointsInElement()
1728 CeedCall(CeedElemRestrictionCreateVector(rstr, NULL, &e_vec)); in CeedElemRestrictionGetMultiplicity()
1731 CeedCall(CeedVectorSetValue(mult, 1.0)); in CeedElemRestrictionGetMultiplicity()
1732 CeedCall(CeedElemRestrictionApply(rstr, CEED_NOTRANSPOSE, mult, e_vec, CEED_REQUEST_IMMEDIATE)); in CeedElemRestrictionGetMultiplicity()
1734 CeedCall(CeedVectorSetValue(mult, 0.0)); in CeedElemRestrictionGetMultiplicity()
1735 CeedCall(CeedElemRestrictionApply(rstr, CEED_TRANSPOSE, e_vec, mult, CEED_REQUEST_IMMEDIATE)); in CeedElemRestrictionGetMultiplicity()
1737 CeedCall(CeedVectorDestroy(&e_vec)); in CeedElemRestrictionGetMultiplicity()
1752 CeedCall(CeedObjectSetNumViewTabs((CeedObject)rstr, num_tabs)); in CeedElemRestrictionSetNumViewTabs()
1767 CeedCall(CeedObjectGetNumViewTabs((CeedObject)rstr, num_tabs)); in CeedElemRestrictionGetNumViewTabs()
1788 CeedCall(CeedElemRestrictionGetNumViewTabs(rstr, &num_tabs)); in CeedElemRestrictionView()
1789 CeedCall(CeedCalloc(CEED_TAB_WIDTH * num_tabs + 1, &tabs)); in CeedElemRestrictionView()
1793 CeedCall(CeedElemRestrictionGetType(rstr, &rstr_type)); in CeedElemRestrictionView()
1797 CeedCall(CeedElemRestrictionGetMaxPointsInElement(rstr, &max_points)); in CeedElemRestrictionView()
1816 CeedCall(CeedFree(&tabs)); in CeedElemRestrictionView()
1838 if ((*rstr)->rstr_base) CeedCall(CeedElemRestrictionDestroy(&(*rstr)->rstr_base)); in CeedElemRestrictionDestroy()
1839 else if ((*rstr)->Destroy) CeedCall((*rstr)->Destroy(*rstr)); in CeedElemRestrictionDestroy()
1841 CeedCall(CeedFree(&(*rstr)->strides)); in CeedElemRestrictionDestroy()
1842 CeedCall(CeedObjectDestroy_Private(&(*rstr)->obj)); in CeedElemRestrictionDestroy()
1843 CeedCall(CeedFree(rstr)); in CeedElemRestrictionDestroy()