Lines Matching refs:minOrient

2845 …tratum(PetscSectionSym sym, PetscInt stratum, PetscInt *size, PetscInt *minOrient, PetscInt *maxOr…  in PetscSectionSymLabelGetStratum()  argument
2866 if (minOrient) { in PetscSectionSymLabelGetStratum()
2867 PetscAssertPointer(minOrient, 4); in PetscSectionSymLabelGetStratum()
2868 *minOrient = sl->minMaxOrients[i][0]; in PetscSectionSymLabelGetStratum()
2904 …tStratum(PetscSectionSym sym, PetscInt stratum, PetscInt size, PetscInt minOrient, PetscInt maxOri… in PetscSectionSymLabelSetStratum() argument
2923 sl->minMaxOrients[i][0] = minOrient; in PetscSectionSymLabelSetStratum()
2929 PetscCall(PetscCalloc1(maxOrient - minOrient, &ownPerms)); in PetscSectionSymLabelSetStratum()
2930 for (j = 0; j < maxOrient - minOrient; j++) { in PetscSectionSymLabelSetStratum()
2936 sl->perms[i] = (const PetscInt **)&ownPerms[-minOrient]; in PetscSectionSymLabelSetStratum()
2941 PetscCall(PetscCalloc1(maxOrient - minOrient, &ownRots)); in PetscSectionSymLabelSetStratum()
2942 for (j = 0; j < maxOrient - minOrient; j++) { in PetscSectionSymLabelSetStratum()
2948 sl->rots[i] = (const PetscScalar **)&ownRots[-minOrient]; in PetscSectionSymLabelSetStratum()
2951 sl->perms[i] = PetscSafePointerPlusOffset(perms, -minOrient); in PetscSectionSymLabelSetStratum()
2952 sl->rots[i] = PetscSafePointerPlusOffset(rots, -minOrient); in PetscSectionSymLabelSetStratum()
3005 PetscInt size, minOrient, maxOrient; in PetscSectionSymCopy_Label() local
3009 … PetscCall(PetscSectionSymLabelGetStratum(sym, val, &size, &minOrient, &maxOrient, &perms, &rots)); in PetscSectionSymCopy_Label()
3010 …PetscCall(PetscSectionSymLabelSetStratum(nsym, val, size, minOrient, maxOrient, PETSC_COPY_VALUES,… in PetscSectionSymCopy_Label()