Lines Matching refs:extFacetCounts
923 PetscSection cellCounts, pointCounts, intFacetCounts, extFacetCounts; in PCPatchCreateCellPatches() local
976 PetscCall(PetscSectionCreate(PETSC_COMM_SELF, &patch->extFacetCounts)); in PCPatchCreateCellPatches()
977 PetscCall(PetscObjectSetName((PetscObject)patch->extFacetCounts, "Patch Exterior Facet Layout")); in PCPatchCreateCellPatches()
978 extFacetCounts = patch->extFacetCounts; in PCPatchCreateCellPatches()
979 PetscCall(PetscSectionSetChart(extFacetCounts, vStart, vEnd)); in PCPatchCreateCellPatches()
1035 PetscCall(PetscSectionAddDof(extFacetCounts, v, 1)); in PCPatchCreateCellPatches()
1054 PetscCall(PetscSectionSetUp(extFacetCounts)); in PCPatchCreateCellPatches()
1056 PetscCall(PetscSectionGetStorageSize(extFacetCounts, &numExtFacets)); in PCPatchCreateCellPatches()
1072 PetscCall(PetscSectionGetDof(extFacetCounts, v, &efdof)); in PCPatchCreateCellPatches()
1073 PetscCall(PetscSectionGetOffset(extFacetCounts, v, &efoff)); in PCPatchCreateCellPatches()
1158 …PetscCall(ObjectView((PetscObject)patch->extFacetCounts, patch->viewerExtFacets, patch->formatExtF… in PCPatchCreateCellPatches()
2902 PetscCall(PetscSectionDestroy(&patch->extFacetCounts)); in PCReset_PATCH()