Lines Matching refs:PetscCount
33 PetscErrorCode PetscSortedReal(PetscCount n, const PetscReal X[], PetscBool *sorted) in PetscSortedReal()
41 static PetscErrorCode PetscSortReal_Private(PetscReal *v, PetscCount right) in PetscSortReal_Private()
43 PetscCount i, last; in PetscSortReal_Private()
86 PetscErrorCode PetscSortReal(PetscCount n, PetscReal v[]) in PetscSortReal()
92 for (PetscCount k = 0; k < n; k++) { in PetscSortReal()
94 for (PetscCount j = k + 1; j < n; j++) { in PetscSortReal()
121 static PetscErrorCode PetscSortRealWithArrayInt_Private(PetscReal *v, PetscInt *V, PetscCount right) in PetscSortRealWithArrayInt_Private()
123 PetscCount i, last; in PetscSortRealWithArrayInt_Private()
163 PetscErrorCode PetscSortRealWithArrayInt(PetscCount n, PetscReal r[], PetscInt Ii[]) in PetscSortRealWithArrayInt()
165 PetscCount j, k; in PetscSortRealWithArrayInt()
206 PetscErrorCode PetscFindReal(PetscReal key, PetscCount n, const PetscReal t[], PetscReal eps, Petsc… in PetscFindReal()