Home
last modified time | relevance | path

Searched refs:subs_alloc_size (Results 1 – 2 of 2) sorted by relevance

/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/include/
H A Dsym_types.h847 int subs_alloc_size; member
/dports/math/symphony/SYMPHONY-releases-5.6.17/SYMPHONY/src/Master/
H A Dmaster_prep_base.c1694 mip->subs_alloc_size = 5*n; in prep_substitute_cols()
1697 mip->subs_rind = (int *)malloc(mip->subs_alloc_size*ISIZE); in prep_substitute_cols()
1698 mip->subs_rval = (double *)malloc(mip->subs_alloc_size*DSIZE); in prep_substitute_cols()
1699 }else if((row_size + mip->subs_rbeg[mip->subs_n] - 1) > mip->subs_alloc_size){ in prep_substitute_cols()
1700 mip->subs_alloc_size += 5*n; in prep_substitute_cols()
1701 mip->subs_rind = (int*)realloc((char*)mip->subs_rind, mip->subs_alloc_size * ISIZE); in prep_substitute_cols()
1702 mip->subs_rval = (double*)realloc((char*)mip->subs_rval, mip->subs_alloc_size * DSIZE); in prep_substitute_cols()