Lines Matching defs:big_base
37 mpz_t big_base;
60 mpz_init_set (bbo, big_base);
72 mpz_set_ui (big_base, (long) base);
74 while (mpz_cmp (big_base, t) <= 0)
76 mpz_mul_ui (big_base, big_base, (long) base);
80 mpz_ui_pow_ui (big_base, (long) base, (long) chars_per_limb);
82 normalization_steps = limb_bits - mpz_sizeinbase (big_base, 2);
86 mpz_tdiv_q (big_base_inverted, t, big_base);
109 mpz_out_str (stdout, 16, big_base);
201 mpz_set_ui (big_base, ulog2 (base) - 1);
211 mpz_out_str (stdout, 16, big_base);
231 mpz_init (big_base);