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

/netbsd-6-1-5-RELEASE/usr.bin/moduli/qsieve/
H A Dqsieve.c126 static uint32_t smallbase; variable
360 for (smallbase = TINY_NUMBER + 3;
361 smallbase < (SMALL_MAXIMUM - TINY_NUMBER);
362 smallbase += TINY_NUMBER) {
371 r = smallbase % t;
374 /* t divides into smallbase exactly */
377 /* smallbase+s is first entry divisible by t */
383 * smallbase+s is odd. Then, step through the sieve in
387 /* Make smallbase+s odd, and s even */
402 /* 2*i+smallbase i
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dmoduli.c131 static u_int32_t *SmallSieve, smallbits, smallbase; variable
360 for (smallbase = TINY_NUMBER + 3;
361 smallbase < (SMALL_MAXIMUM - TINY_NUMBER);
362 smallbase += TINY_NUMBER) {
369 r = smallbase % t;
372 s = 0; /* t divides into smallbase exactly */
374 /* smallbase+s is first entry divisible by t */
380 * smallbase+s is odd. Then, step through the sieve
384 s += t; /* Make smallbase+s odd, and s even */
396 continue; /* 2*i+smallbase i
[all...]

Completed in 128 milliseconds