Home | History | Annotate | Download | only in libtommath

Lines Matching refs:step

26    mp_digit res_tab[PRIME_SIZE], step, kstep;
109 step = 0;
114 /* increase step to next candidate */
115 step += kstep;
119 /* add the step to each residue */
132 } while (y == 1 && step < ((((mp_digit)1)<<DIGIT_BIT) - kstep));
134 /* add the step */
135 if ((err = mp_add_d(a, step, a)) != MP_OKAY) {
139 /* if didn't pass sieve and step == MAX then skip test */
140 if (y == 1 && step >= ((((mp_digit)1)<<DIGIT_BIT) - kstep)) {