Lines Matching refs:fEnd
1047 PetscInt dim, nleaves, loc, fStart, fEnd, pdim, i; in DMPlexInsertBoundaryValuesRiemann() local
1055 PetscCall(DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd)); in DMPlexInsertBoundaryValuesRiemann()
1086 if ((face < fStart) || (face >= fEnd)) continue; /* Refinement adds non-faces to labels */ in DMPlexInsertBoundaryValuesRiemann()
1407 PetscInt fStart, fEnd; in DMPlexInsertBoundaryValuesFVM() local
1409 PetscCall(DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd)); in DMPlexInsertBoundaryValuesFVM()
1411 …PetscCall(DMPlexReconstructGradients_Internal(dm, fv, fStart, fEnd, faceGeometryFVM, cellGeometryF… in DMPlexInsertBoundaryValuesFVM()
2469 PetscInt fStart, fEnd; in DMPlexComputeIntegral_Internal() local
2490 PetscCall(DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd)); in DMPlexComputeIntegral_Internal()
2492 …PetscCall(DMPlexReconstructGradients_Internal(dm, fv, fStart, fEnd, faceGeometryFVM, cellGeometryF… in DMPlexComputeIntegral_Internal()
4090 PetscErrorCode DMPlexGetFaceFields(DM dm, PetscInt fStart, PetscInt fEnd, Vec locX, PeOp Vec locX_t… in DMPlexGetFaceFields() argument
4098 PetscInt dim, Nf, f, Nc, numFaces = fEnd - fStart, iface, face; in DMPlexGetFaceFields()
4142 for (face = fStart, iface = 0; face < fEnd; ++face) { in DMPlexGetFaceFields()
4254 PetscErrorCode DMPlexRestoreFaceFields(DM dm, PetscInt fStart, PetscInt fEnd, Vec locX, PeOp Vec lo… in DMPlexRestoreFaceFields() argument
4281 PetscErrorCode DMPlexGetFaceGeometry(DM dm, PetscInt fStart, PetscInt fEnd, Vec faceGeometry, Vec c… in DMPlexGetFaceGeometry() argument
4286 PetscInt dim, numFaces = fEnd - fStart, iface, face; in DMPlexGetFaceGeometry()
4302 for (face = fStart, iface = 0; face < fEnd; ++face) { in DMPlexGetFaceGeometry()
4351 PetscErrorCode DMPlexRestoreFaceGeometry(DM dm, PetscInt fStart, PetscInt fEnd, Vec faceGeometry, V… in DMPlexRestoreFaceGeometry() argument
4405 PetscInt Nf, f, totDim, totDimAux, numChunks, cellChunkSize, chunk, fStart, fEnd; in DMPlexComputeResidual_Patch_Internal() local
4467 PetscCall(DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd)); in DMPlexComputeResidual_Patch_Internal()
5195 …cInt Nf, f, totDim, totDimAux, numChunks, cellChunkSize, faceChunkSize, chunk, fStart, fEnd; in DMPlexComputeResidualByKey() local
5208 PetscCall(DMPlexGetHeightStratum(dm, 1, &fStart, &fEnd)); in DMPlexComputeResidualByKey()
5277 faceChunkSize = (fEnd - fStart) / numChunks; in DMPlexComputeResidualByKey()
5284 …PetscInt fS = fStart + chunk * faceChunkSize, fE = PetscMin(fS + faceChunkSize, fEnd), num… in DMPlexComputeResidualByKey()