Home
last modified time | relevance | path

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

/petsc/src/mat/impls/hypre/
H A Dmhypre.h17 PetscInt array_size; member
H A Dmhypre.c1512 if (hA->array_size >= size) {
1516 hA->array_size = size;
1517 PetscCall(PetscMalloc(hA->array_size, &hA->array));
/petsc/src/dm/impls/plex/
H A Dplexsfc.c352 …tFieldPointIndex(DM dm, PetscSection section, PetscInt field, PetscInt array_size, PetscInt array[… in DMPlexOrientFieldPointIndex() argument
363 …PetscCheck(off + dof <= array_size, PETSC_COMM_SELF, PETSC_ERR_PLIB, "Section indices exceed index… in DMPlexOrientFieldPointIndex()
506 static inline PetscBool SearchIntArray(PetscInt key, PetscInt array_size, const PetscInt array[]) in SearchIntArray() argument
508 for (PetscInt i = 0; i < array_size; i++) in SearchIntArray()