Lines Matching refs:pointCounts
923 PetscSection cellCounts, pointCounts, intFacetCounts, extFacetCounts; in PCPatchCreateCellPatches() local
972 PetscCall(PetscSectionCreate(PETSC_COMM_SELF, &patch->pointCounts)); in PCPatchCreateCellPatches()
973 PetscCall(PetscObjectSetName((PetscObject)patch->pointCounts, "Patch Point Layout")); in PCPatchCreateCellPatches()
974 pointCounts = patch->pointCounts; in PCPatchCreateCellPatches()
975 PetscCall(PetscSectionSetChart(pointCounts, vStart, vEnd)); in PCPatchCreateCellPatches()
1039 if (pdof) PetscCall(PetscSectionAddDof(pointCounts, v, 1)); in PCPatchCreateCellPatches()
1049 PetscCall(PetscSectionSetUp(pointCounts)); in PCPatchCreateCellPatches()
1050 PetscCall(PetscSectionGetStorageSize(pointCounts, &numPoints)); in PCPatchCreateCellPatches()
1066 PetscCall(PetscSectionGetDof(pointCounts, v, &dof)); in PCPatchCreateCellPatches()
1067 PetscCall(PetscSectionGetOffset(pointCounts, v, &off)); in PCPatchCreateCellPatches()
1164 … PetscCall(ObjectView((PetscObject)patch->pointCounts, patch->viewerPoints, patch->formatPoints)); in PCPatchCreateCellPatches()
1191 PetscSection pointCounts = patch->pointCounts; in PCPatchCreateCellPatchDiscretisationInfo() local
1237 PetscCall(PetscSectionGetStorageSize(patch->pointCounts, &numPoints)); in PCPatchCreateCellPatchDiscretisationInfo()
1481 PetscCall(PetscSectionGetDof(pointCounts, v, &Np)); in PCPatchCreateCellPatchDiscretisationInfo()
1482 PetscCall(PetscSectionGetOffset(pointCounts, v, &ooff)); in PCPatchCreateCellPatchDiscretisationInfo()
1906 PetscCall(PetscSectionGetDof(patch->pointCounts, patchNum, &Np)); in PCPatchComputeFunction_DMPlex_Private()
1907 PetscCall(PetscSectionGetOffset(patch->pointCounts, patchNum, &poff)); in PCPatchComputeFunction_DMPlex_Private()
1987 PetscCall(PetscSectionGetDof(patch->pointCounts, patchNum, &Np)); in PCPatchComputeOperator_DMPlex_Private()
1988 PetscCall(PetscSectionGetOffset(patch->pointCounts, patchNum, &poff)); in PCPatchComputeOperator_DMPlex_Private()
2876 PetscCall(PetscSectionDestroy(&patch->pointCounts)); in PCReset_PATCH()