Lines Matching refs:Nl

998   PetscInt           Nl, l;  in DMPlexMapToGlobalPoint()  local
1005 PetscCall(PetscSFGetGraph(sf, NULL, &Nl, &locals, &remotes)); in DMPlexMapToGlobalPoint()
1006 if (Nl < 0) goto owned; in DMPlexMapToGlobalPoint()
1010 PetscCall(PetscFindInt(localPoint, Nl, locals, &l)); in DMPlexMapToGlobalPoint()
1025 PetscInt Nl, idx; in DMPlexPointIsShared() local
1030 PetscCall(PetscSFGetGraph(sf, NULL, &Nl, &locals, NULL)); in DMPlexPointIsShared()
1031 if (Nl < 0) PetscFunctionReturn(PETSC_SUCCESS); in DMPlexPointIsShared()
1032 PetscCall(PetscFindInt(p, Nl, locals, &idx)); in DMPlexPointIsShared()
1189 PetscInt ov, Nr, r, Nl, l; in DMPlexInterpolatePointSF() local
1210 PetscCall(PetscSFGetGraph(pointSF, &Nr, &Nl, &localPoints, &remotePoints)); in DMPlexInterpolatePointSF()
1213 for (l = 0; l < Nl; ++l) { in DMPlexInterpolatePointSF()
1245 for (l = 0; l < Nl; ++l) { in DMPlexInterpolatePointSF()
1255 for (l = 0; l < Nl; ++l) { in DMPlexInterpolatePointSF()
1477 PetscCall(PetscMalloc1(Nl + NlNew, &localPointsNew)); in DMPlexInterpolatePointSF()
1478 PetscCall(PetscMalloc1(Nl + NlNew, &remotePointsNew)); in DMPlexInterpolatePointSF()
1479 for (l = 0; l < Nl; ++l) { in DMPlexInterpolatePointSF()
1484 p = Nl; in DMPlexInterpolatePointSF()
1487 PetscCall(PetscSortInt(NlNew, PetscSafePointerPlusOffset(localPointsNew, Nl))); in DMPlexInterpolatePointSF()
1488 for (p = Nl; p < Nl + NlNew; ++p) { in DMPlexInterpolatePointSF()
1495 …PetscCall(PetscSFSetGraph(sfPointNew, pEnd - pStart, Nl + NlNew, localPointsNew, PETSC_OWN_POINTER… in DMPlexInterpolatePointSF()