Lines Matching refs:intFacetCounts
923 PetscSection cellCounts, pointCounts, intFacetCounts, extFacetCounts; in PCPatchCreateCellPatches() local
980 PetscCall(PetscSectionCreate(PETSC_COMM_SELF, &patch->intFacetCounts)); in PCPatchCreateCellPatches()
981 PetscCall(PetscObjectSetName((PetscObject)patch->intFacetCounts, "Patch Interior Facet Layout")); in PCPatchCreateCellPatches()
982 intFacetCounts = patch->intFacetCounts; in PCPatchCreateCellPatches()
983 PetscCall(PetscSectionSetChart(intFacetCounts, vStart, vEnd)); in PCPatchCreateCellPatches()
1033 PetscCall(PetscSectionAddDof(intFacetCounts, v, 1)); in PCPatchCreateCellPatches()
1053 PetscCall(PetscSectionSetUp(intFacetCounts)); in PCPatchCreateCellPatches()
1055 PetscCall(PetscSectionGetStorageSize(intFacetCounts, &numIntFacets)); in PCPatchCreateCellPatches()
1070 PetscCall(PetscSectionGetDof(intFacetCounts, v, &ifdof)); in PCPatchCreateCellPatches()
1071 PetscCall(PetscSectionGetOffset(intFacetCounts, v, &ifoff)); in PCPatchCreateCellPatches()
1151 …PetscCall(ObjectView((PetscObject)patch->intFacetCounts, patch->viewerIntFacets, patch->formatIntF… in PCPatchCreateCellPatches()
1772 PetscCall(PetscSectionGetDof(patch->intFacetCounts, point, &numIntFacets)); in PCPatchCreateMatrix_Private()
1773 PetscCall(PetscSectionGetOffset(patch->intFacetCounts, point, &intFacetOffset)); in PCPatchCreateMatrix_Private()
1821 PetscCall(PetscSectionGetDof(patch->intFacetCounts, point, &numIntFacets)); in PCPatchCreateMatrix_Private()
1822 PetscCall(PetscSectionGetOffset(patch->intFacetCounts, point, &intFacetOffset)); in PCPatchCreateMatrix_Private()
1860 PetscCall(PetscSectionGetDof(patch->intFacetCounts, point, &numIntFacets)); in PCPatchCreateMatrix_Private()
1861 PetscCall(PetscSectionGetOffset(patch->intFacetCounts, point, &intFacetOffset)); in PCPatchCreateMatrix_Private()
2066 PetscCall(PetscSectionGetDof(patch->intFacetCounts, point, &numIntFacets)); in PCPatchComputeOperator_Internal()
2067 PetscCall(PetscSectionGetOffset(patch->intFacetCounts, point, &intFacetOffset)); in PCPatchComputeOperator_Internal()
2291 PetscCall(PetscSectionGetChart(patch->intFacetCounts, &pStart, &pEnd)); in PCPatchPrecomputePatchTensors_Private()
2294 PetscCall(PetscSectionGetDof(patch->intFacetCounts, i, &nIntFacets)); in PCPatchPrecomputePatchTensors_Private()
2295 PetscCall(PetscSectionGetOffset(patch->intFacetCounts, i, &offset)); in PCPatchPrecomputePatchTensors_Private()
2901 PetscCall(PetscSectionDestroy(&patch->intFacetCounts)); in PCReset_PATCH()