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

/barrelfish-master/usr/eclipseclp/Eplex/
H A Deplex.h154 int sosnzsz; /* size of sos member arrays */ member in struct:__anon1616
156 sostype_t *sostype; /* [sosnzsz] sos type 1 or 2 */
158 int *sosind; /* [sosnzsz] col-no */
159 double *sosref; /* [sosnzsz] */
H A Deplex.c5180 if (lpd->nsosnz > lpd->sosnzsz)
5182 if (lpd->sosnzsz == 0)
5184 lpd->sosnzsz = RoundTo(lpd->nsosnz, 512);
5185 lpd->sostype = (sostype_t *) Malloc(lpd->sosnzsz*sizeof(sostype_t));
5186 lpd->sosind = (int *) Malloc(lpd->sosnzsz*sizeof(int));
5187 lpd->sosref = (double *) Malloc(lpd->sosnzsz*sizeof(double));
5191 lpd->sosnzsz = RoundTo(lpd->nsosnz, 512);
5192 lpd->sostype = (sostype_t *) Realloc(lpd->sostype, lpd->sosnzsz*sizeof(sostype_t));
5193 lpd->sosind = (int *) Realloc(lpd->sosind, lpd->sosnzsz*sizeof(int));
5194 lpd->sosref = (double *) Realloc(lpd->sosref, lpd->sosnzsz*sizeo
[all...]

Completed in 38 milliseconds