Searched refs:nnz_sz (Results 1 - 2 of 2) sorted by relevance

/barrelfish-master/usr/eclipseclp/Eplex/
H A Deplex.h183 int nnz_sz; /* size of new nonzero arrays */ member in struct:__anon1616
187 int *rmatind; /* [nnz_sz] */
188 double *rmatval; /* [nnz_sz] */
H A Deplex.c609 if (lpd->nnz_sz)
2346 #define Add_Row_Coeff(nnz_sz, nnzs, rmatind, rmatval, idxj, val, tag) {\
2347 if (nnzs >= nnz_sz) /* allocate/grow arrays */\
2349 CallN(nnz_sz += NEWNZ_INCR);\
2350 CallN(rmatind = (int *) Realloc(rmatind, nnz_sz*sizeof(int)));\
2351 CallN(rmatval = (double *) Realloc(rmatval, nnz_sz*sizeof(double)));\
2373 Add_Row_Coeff(lpd->nnz_sz, lpd->nnz, lpd->rmatind, lpd->rmatval, vj.nint, v, t);
5298 if (ncols > lpd->nnz_sz) /* allocate/grow arrays */
5300 if (lpd->nnz_sz == 0)
5302 lpd->nnz_sz
[all...]

Completed in 46 milliseconds