Lines Matching refs:n2
252 PetscInt pStart, pEnd, nfields, ncdof, nfcdof, p, f, n1, n2; in PetscSectionCompare() local
271 PetscCall(PetscSectionGetChart(s2, &n1, &n2)); in PetscSectionCompare()
272 if (pStart != n1 || pEnd != n2) goto not_congruent; in PetscSectionCompare()
283 PetscCall(PetscSectionGetOffset(s2, p, &n2)); in PetscSectionCompare()
284 if (n1 != n2) goto not_congruent; in PetscSectionCompare()
287 PetscCall(PetscSectionGetDof(s2, p, &n2)); in PetscSectionCompare()
288 if (n1 != n2) goto not_congruent; in PetscSectionCompare()
291 PetscCall(PetscSectionGetConstraintDof(s2, p, &n2)); in PetscSectionCompare()
292 if (ncdof != n2) goto not_congruent; in PetscSectionCompare()
301 PetscCall(PetscSectionGetNumFields(s2, &n2)); in PetscSectionCompare()
302 if (nfields != n2) goto not_congruent; in PetscSectionCompare()
306 PetscCall(PetscSectionGetFieldComponents(s2, f, &n2)); in PetscSectionCompare()
307 if (n1 != n2) goto not_congruent; in PetscSectionCompare()
311 PetscCall(PetscSectionGetFieldOffset(s2, p, f, &n2)); in PetscSectionCompare()
312 if (n1 != n2) goto not_congruent; in PetscSectionCompare()
315 PetscCall(PetscSectionGetFieldDof(s2, p, f, &n2)); in PetscSectionCompare()
316 if (n1 != n2) goto not_congruent; in PetscSectionCompare()
319 PetscCall(PetscSectionGetFieldConstraintDof(s2, p, f, &n2)); in PetscSectionCompare()
320 if (nfcdof != n2) goto not_congruent; in PetscSectionCompare()