Lines Matching refs:coo_i
503 … n, const PetscInt ii[], const PetscInt jj[], PetscCount *ncoo, PetscInt **coo_i, PetscInt **coo_j) in CSRtoCOO_Private() argument
514 *coo_i = cooi; in CSRtoCOO_Private()
520 …, const HYPRE_Int ii[], const HYPRE_Int jj[], PetscCount *ncoo, PetscInt **coo_i, PetscInt **coo_j) in CSRtoCOO_HYPRE_Int_Private() argument
531 *coo_i = cooi; in CSRtoCOO_HYPRE_Int_Private()
537 static PetscErrorCode MatSeqAIJGetCOO_Private(Mat A, PetscCount *ncoo, PetscInt **coo_i, PetscInt *… in MatSeqAIJGetCOO_Private() argument
546 PetscCall(CSRtoCOO_Private(n, ii, jj, ncoo, coo_i, coo_j)); in MatSeqAIJGetCOO_Private()
553 …reCSRMatrixGetCOO_Private(hypre_CSRMatrix *A, PetscCount *ncoo, PetscInt **coo_i, PetscInt **coo_j) argument
574 PetscCall(CSRtoCOO_HYPRE_Int_Private(n, ii, jj, ncoo, coo_i, coo_j));
649 PetscInt *coo_i, *coo_j; local
668 PetscCall(MatSeqAIJGetCOO_Private(dA, &coo_n, &coo_i, &coo_j));
669 PetscCall(MatSetPreallocationCOO(dH, coo_n, coo_i, coo_j));
670 PetscCall(PetscFree2(coo_i, coo_j));
674 PetscCall(MatSeqAIJGetCOO_Private(oA, &coo_n, &coo_i, &coo_j));
675 PetscCall(MatSetPreallocationCOO(oH, coo_n, coo_i, coo_j));
676 PetscCall(PetscFree2(coo_i, coo_j));
749 PetscInt *coo_i, *coo_j; local
760 PetscCall(hypreCSRMatrixGetCOO_Private(dH, &coo_n, &coo_i, &coo_j));
761 PetscCall(MatSetPreallocationCOO(dA, coo_n, coo_i, coo_j));
762 PetscCall(PetscFree2(coo_i, coo_j));
768 PetscCall(hypreCSRMatrixGetCOO_Private(oH, &coo_n, &coo_i, &coo_j));
769 PetscCall(MatSetPreallocationCOO(oA, coo_n, coo_i, coo_j));
770 PetscCall(PetscFree2(coo_i, coo_j));
2329 static PetscErrorCode MatSetPreallocationCOO_HYPRE(Mat mat, PetscCount coo_n, PetscInt coo_i[], Pet… argument
2344 PetscCall(MatSetPreallocationCOO(hmat->cooMat, coo_n, coo_i, coo_j));