Lines Matching refs:aoff

443       PetscInt aoff, i = 0;  in DMPlexCreateAdjacencySection_Static()  local
445 PetscCall(PetscSectionGetOffset(leafSectionAdj, d, &aoff)); in DMPlexCreateAdjacencySection_Static()
455 adj[aoff + i] = (ngoff < 0 ? -(ngoff + 1) : ngoff) + nd; in DMPlexCreateAdjacencySection_Static()
460 adj[aoff + i] = anchorAdj[anOff + q]; in DMPlexCreateAdjacencySection_Static()
512 PetscInt adof, aoff, i; in DMPlexCreateAdjacencySection_Static() local
515 PetscCall(PetscSectionGetOffset(rootSectionAdj, d, &aoff)); in DMPlexCreateAdjacencySection_Static()
518 rootAdj[aoff + i] = anchorAdj[anOff + q]; in DMPlexCreateAdjacencySection_Static()
530 rootAdj[aoff + i] = ngoff < 0 ? -(ngoff + 1) + nd : ngoff + nd; in DMPlexCreateAdjacencySection_Static()
545 PetscInt adof, aoff; in DMPlexCreateAdjacencySection_Static() local
555 PetscCall(PetscSectionGetOffset(rootSectionAdj, d, &aoff)); in DMPlexCreateAdjacencySection_Static()
556 PetscCall(PetscSortRemoveDupsInt(&adof, &rootAdj[aoff])); in DMPlexCreateAdjacencySection_Static()
642 PetscInt aoff, roff; in DMPlexCreateAdjacencySection_Static() local
644 PetscCall(PetscSectionGetOffset(sectionAdj, goff + d, &aoff)); in DMPlexCreateAdjacencySection_Static()
646 PetscCall(PetscArraycpy(&cols[aoff], &rootAdj[roff], rdof)); in DMPlexCreateAdjacencySection_Static()
657 PetscInt adof, aoff, i = 0; in DMPlexCreateAdjacencySection_Static() local
660 PetscCall(PetscSectionGetOffset(sectionAdj, d, &aoff)); in DMPlexCreateAdjacencySection_Static()
674 …for (nd = 0; nd < ndof - ncdof; ++nd, ++i) cols[aoff + i] = ngoff < 0 ? -(ngoff + 1) + nd : ngoff … in DMPlexCreateAdjacencySection_Static()
676 for (q = 0; q < anDof; q++, i++) cols[aoff + i] = anchorAdj[anOff + q]; in DMPlexCreateAdjacencySection_Static()