Lines Matching defs:last
13 unsigned long last, sz;
19 .last = 61,
44 .last = 31,
135 if (x < p->last) {
147 new->last = clear_multiples(y, new->primes, p->sz, sz);
150 BUG_ON(new->last <= x);
194 while (x >= p->last) {
203 x = find_next_bit(p->primes, p->last, x + 1);
256 pr_info("primes.{last=%lu, .sz=%lu, .primes[]=...x%lx} = %s\n",
257 p->last, p->sz, p->primes[BITS_TO_LONGS(p->sz) - 1], buf);
266 unsigned long x, last;
271 for (last = 0, x = 2; x < max; x++) {
284 if (next_prime_number(last) != x) {
286 last, x, next_prime_number(last));
289 last = x;
292 pr_info("%s(%lu) passed, last prime was %lu\n", __func__, x, last);