Home
last modified time | relevance | path

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

/petsc/src/dm/impls/plex/
H A Dplexpreallocate.c448 PetscInt ndof, ncdof, ngoff, nd; in DMPlexCreateAdjacencySection_Static() local
453 PetscCall(PetscSectionGetOffset(sectionGlobal, padj, &ngoff)); in DMPlexCreateAdjacencySection_Static()
455 adj[aoff + i] = (ngoff < 0 ? -(ngoff + 1) : ngoff) + nd; in DMPlexCreateAdjacencySection_Static()
523 PetscInt ndof, ncdof, ngoff, nd; in DMPlexCreateAdjacencySection_Static() local
528 PetscCall(PetscSectionGetOffset(sectionGlobal, padj, &ngoff)); in DMPlexCreateAdjacencySection_Static()
530 rootAdj[aoff + i] = ngoff < 0 ? -(ngoff + 1) + nd : ngoff + nd; in DMPlexCreateAdjacencySection_Static()
663 PetscInt ndof, ncdof, ngoff, nd, count; in DMPlexCreateAdjacencySection_Static() local
670 PetscCall(PetscSectionGetOffset(sectionGlobal, padj, &ngoff)); in DMPlexCreateAdjacencySection_Static()
674 …r (nd = 0; nd < ndof - ncdof; ++nd, ++i) cols[aoff + i] = ngoff < 0 ? -(ngoff + 1) + nd : ngoff + … in DMPlexCreateAdjacencySection_Static()