Home
last modified time | relevance | path

Searched refs:fieldSizes (Results 1 – 1 of 1) sorted by relevance

/petsc/src/dm/interface/
H A Ddm.c1968 PetscInt *fieldSizes, *fieldNc, **fieldIndices; in DMCreateFieldIS() local
1973 PetscCall(PetscMalloc3(nF, &fieldSizes, nF, &fieldNc, nF, &fieldIndices)); in DMCreateFieldIS()
1976 fieldSizes[f] = 0; in DMCreateFieldIS()
1994 fieldSizes[f] += fpdof; in DMCreateFieldIS()
1999 PetscCall(PetscMalloc1(fieldSizes[f], &fieldIndices[f])); in DMCreateFieldIS()
2000 fieldSizes[f] = 0; in DMCreateFieldIS()
2013 … for (fc = 0; fc < fdof - fcdof; ++fc, ++fieldSizes[f]) fieldIndices[f][fieldSizes[f]] = goff++; in DMCreateFieldIS()
2032 …PetscCall(ISCreateGeneral(PetscObjectComm((PetscObject)dm), fieldSizes[f], fieldIndices[f], PETSC_… in DMCreateFieldIS()
2040 PetscCall(PetscFree3(fieldSizes, fieldNc, fieldIndices)); in DMCreateFieldIS()