Home
last modified time | relevance | path

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

/petsc/src/vec/is/sf/utils/
H A Dsfutils.c532 PetscInt rN, lst, len; in PetscSFCreateFromLayouts() local
550 PetscCall(PetscLayoutGetRange(lmap, &lst, &len)); in PetscSFCreateFromLayouts()
551 PetscCall(PetscMalloc1(len - lst, &remote)); in PetscSFCreateFromLayouts()
552 for (i = lst; i < len && i < rN; i++) { in PetscSFCreateFromLayouts()
/petsc/src/mat/impls/nest/
H A Dmatnest.c389 IS *lst = *list; in MatNestDestroyISList() local
393 if (!lst) PetscFunctionReturn(PETSC_SUCCESS); in MatNestDestroyISList()
395 if (lst[i]) PetscCall(ISDestroy(&lst[i])); in MatNestDestroyISList()
396 PetscCall(PetscFree(lst)); in MatNestDestroyISList()
/petsc/config/BuildSystem/config/
H A DsetCompilers.py17 def any(lst): argument
18 return reduce(lambda x,y:x or y,lst,False)