Searched refs:cnewnmax (Results 1 – 1 of 1) sorted by relevance
222 PetscCount cnewnmax; in MatStashExpand_Private() local227 if (stash->umax) cnewnmax = stash->umax / bs2; in MatStashExpand_Private()228 else cnewnmax = DEFAULT_STASH_SIZE / bs2; in MatStashExpand_Private()230 if (stash->umax > stash->oldnmax) cnewnmax = stash->umax / bs2; in MatStashExpand_Private()231 else cnewnmax = stash->oldnmax / bs2; in MatStashExpand_Private()232 } else cnewnmax = stash->nmax * 2; in MatStashExpand_Private()233 if (cnewnmax < (stash->nmax + incr)) cnewnmax += 2 * incr; in MatStashExpand_Private()234 PetscCall(PetscIntCast(cnewnmax, &newnmax)); in MatStashExpand_Private()