Lines Matching defs:n_to_bit
49 /* n_to_bit (n) = ((n-1)&(-CNST_LIMB(2)))/3U-1 */
51 n_to_bit (mp_limb_t n) { return ((n-5)|1)/3U; }
55 primesieve_size (mp_limb_t n) { return n_to_bit(n) / GMP_LIMB_BITS + 1; }
252 bits = n_to_bit(n);
267 if (n_to_bit (SEED_LIMIT + 1) < GMP_LIMB_BITS)
280 /* lindex = n_to_bit(id_to_n(i)*id_to_n(i)); */
296 /* lindex = n_to_bit(id_to_n(i)*bit_to_n(i)); */
339 /* lindex = n_to_bit(id_to_n(i)*id_to_n(i)); */
359 /* lindex = n_to_bit(id_to_n(i)*bit_to_n(i)); */
404 bits = n_to_bit(n);