Home
last modified time | relevance | path

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

/petsc/src/dm/impls/network/
H A Dnetwork.c1263 PetscErrorCode DMNetworkGetGlobalVecOffset(DM dm, PetscInt p, PetscInt compnum, PetscInt *offsetg) in DMNetworkGetGlobalVecOffset() argument
1274 *offsetg = offsetp; in DMNetworkGetGlobalVecOffset()
1279 *offsetg = offsetp + header->offsetvarrel[compnum]; in DMNetworkGetGlobalVecOffset()
2138 PetscInt offsetg; in DMNetworkIsGhostVertex() local
2144 PetscCall(PetscSectionGetOffset(sectiong, p, &offsetg)); in DMNetworkIsGhostVertex()
2145 if (offsetg < 0) *isghost = PETSC_TRUE; in DMNetworkIsGhostVertex()
3014 PetscInt i, j, ncomps, nvar, key, offsetg, k, k1, offset = 0; in DMISComputeIdx_private() local
3029 PetscCall(DMNetworkGetGlobalVecOffset(dm, p, i, &offsetg)); in DMISComputeIdx_private()
3031 for (k = 0; k < nvar; k++) idx[(*ii)++] = offsetg + k; in DMISComputeIdx_private()
3034 for (k1 = 0; k1 < nselectedvar[j]; k1++) idx[(*ii)++] = offsetg + k + selectedvar[j][k1]; in DMISComputeIdx_private()
/petsc/doc/manual/
H A Ddmnetwork.md172 DMNetworkGetGlobalVecOffset(DM dm, PetscInt p, PetscInt compnum, PetscInt *offsetg).