Home
last modified time | relevance | path

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

/petsc/src/vec/vec/utils/
H A Dprojection.c481 PetscInt nfull, nreduced; in VecISAXPY() local
490 PetscCall(ISGetSize(is, &nfull)); in VecISAXPY()
491 if (!nfull) PetscFunctionReturn(PETSC_SUCCESS); in VecISAXPY()
492 PetscCall(VecGetSize(vfull, &nfull)); in VecISAXPY()
494 if (nfull == nreduced) PetscCall(ISGetInfo(is, IS_SORTED, IS_GLOBAL, PETSC_TRUE, &sorted)); in VecISAXPY()
551 PetscInt nfull, nreduced; in VecISCopy() local
560 PetscCall(ISGetSize(is, &nfull)); in VecISCopy()
561 if (!nfull) PetscFunctionReturn(PETSC_SUCCESS); in VecISCopy()
562 PetscCall(VecGetSize(vfull, &nfull)); in VecISCopy()
564 if (nfull == nreduced) PetscCall(ISGetInfo(is, IS_SORTED, IS_GLOBAL, PETSC_TRUE, &sorted)); in VecISCopy()
/petsc/src/tao/bound/utils/
H A Disutil.c27 PetscInt nfull, nreduced, nreduced_local, rlow, rhigh, flow, fhigh; in TaoVecGetSubVec() local
40 PetscCall(VecGetSize(vfull, &nfull)); in TaoVecGetSubVec()
43 if (nreduced == nfull) { in TaoVecGetSubVec()