Searched refs:outSparseMat (Results 1 – 3 of 3) sorted by relevance
283 %typemap(in) (const SparseBlockStructuredMatrix* const A, CSparseMatrix *outSparseMat)301 %typemap(argout) (CSparseMatrix *outSparseMat)
460 int SBM_to_sparse(const SparseBlockStructuredMatrix* const A, CSparseMatrix *outSparseMat);
3106 int SBM_to_sparse(const SparseBlockStructuredMatrix* const A, CSparseMatrix *outSparseMat) in SBM_to_sparse() argument3113 assert(outSparseMat); in SBM_to_sparse()3114 assert(outSparseMat->p); in SBM_to_sparse()3115 assert(outSparseMat->i); in SBM_to_sparse()3116 assert(outSparseMat->x); in SBM_to_sparse()3126 outSparseMat->p[0] = 0; /* We assume that the first row is non empty */ in SBM_to_sparse()3155 outSparseMat->p[isparserow + 1] = outSparseMat->p[isparserow]; in SBM_to_sparse()3175 outSparseMat->p[isparserow + 1] += nbColumns ; in SBM_to_sparse()3189 outSparseMat->i[nnz] = isparsecolumn; in SBM_to_sparse()3211 outSparseMat->x[nnz] = A->block[blockNum][colintheblock * nbRows + rowintheblock]; in SBM_to_sparse()