Home | History | Annotate | Download | only in bn

Lines Matching refs:wnum

200   BIGNUM wnum;
269 wnum.neg = 0;
270 wnum.d = &(snum->d[loop]);
271 wnum.top = div_n;
273 wnum.dmax = snum->dmax - loop; // so we don't step out of bounds
307 // calculate a BN_ULONG q such that | wnum - sdiv * q | < sdiv
354 wnum.d--;
357 if (bn_sub_words(wnum.d, wnum.d, tmp->d, div_n + 1)) {
360 // might be greater than wnum (but then (q-1) * sdiv
361 // is less or equal than wnum)
363 if (bn_add_words(wnum.d, wnum.d, sdiv->d, div_n)) {