Lines Matching refs:bSecDof

7800     PetscInt     bSecDof = 0, bOff;  in DMPlexAnchorsGetSubMatIndices()  local
7804 if (b >= sStart && b < sEnd) PetscCall(PetscSectionGetDof(section, b, &bSecDof)); in DMPlexAnchorsGetSubMatIndices()
7805 if (!bSecDof) continue; in DMPlexAnchorsGetSubMatIndices()
7875 PetscInt bDof = 0, bSecDof = 0; in DMPlexAnchorsGetSubMatModification() local
7877 if (b >= sStart && b < sEnd) PetscCall(PetscSectionGetDof(section, b, &bSecDof)); in DMPlexAnchorsGetSubMatModification()
7878 if (!bSecDof) continue; in DMPlexAnchorsGetSubMatModification()
7913 newNumIndices += bSecDof; in DMPlexAnchorsGetSubMatModification()
7959 PetscInt bDof = 0, bSecDof = 0, bOff; in DMPlexAnchorsGetSubMatModification() local
7961 if (b >= sStart && b < sEnd) PetscCall(PetscSectionGetDof(section, b, &bSecDof)); in DMPlexAnchorsGetSubMatModification()
7962 if (!bSecDof) continue; in DMPlexAnchorsGetSubMatModification()
8008 PetscInt bDof = 0, bSecDof = 0, bOff; in DMPlexAnchorsGetSubMatModification() local
8012 PetscCall(PetscSectionGetFieldDof(section, b, f, &bSecDof)); in DMPlexAnchorsGetSubMatModification()
8014 PetscCall(PetscSectionGetDof(section, b, &bSecDof)); in DMPlexAnchorsGetSubMatModification()
8017 if (!bSecDof) continue; in DMPlexAnchorsGetSubMatModification()
8032 PetscCall(MatGetValues(cMat, bSecDof, &indices[o], aDof, &newIndices[oNew], tmpMat)); in DMPlexAnchorsGetSubMatModification()
8033 for (PetscInt d = 0; d < bSecDof; d++) { in DMPlexAnchorsGetSubMatModification()
8041 for (PetscInt d = 0; d < bSecDof; d++) modMat[(o + d) * newNumIndices + oNew + d] = 1; in DMPlexAnchorsGetSubMatModification()
8042 oNew += bSecDof; in DMPlexAnchorsGetSubMatModification()
8044 o += bSecDof; in DMPlexAnchorsGetSubMatModification()