Example #1
0
 private static extern void mpq_set_z(ref mpq_t rop, ref mpz_t op);
Example #2
0
 private static extern void mpz_powm(ref mpz_t rop, ref mpz_t bas, ref mpz_t exp, ref mpz_t mod);
Example #3
0
 private static extern void mpz_ui_pow_ui(ref mpz_t rop, uint bas, uint exp);
Example #4
0
 private static extern int mpz_cmp_si(ref mpz_t op1, int op2);
Example #5
0
 private static extern void mpz_sqrt(ref mpz_t rop, ref mpz_t op);
Example #6
0
 private static extern IntPtr mpz_get_str(IntPtr out_string, int _base, ref mpz_t src);
Example #7
0
 private static extern int mpz_cmp(ref mpz_t op1, ref mpz_t op2);
Example #8
0
 private static extern void mpz_init_set_si(ref mpz_t value, int v);
Example #9
0
 private static extern int mpz_init_set_str(ref mpz_t rop, IntPtr s, int basis);
Example #10
0
 private static extern void mpq_set_den(ref mpq_t rop, ref mpz_t den);
Example #11
0
 private static extern void mpz_init(ref mpz_t value);
Example #12
0
 private static extern void mpq_set_num(ref mpq_t rop, ref mpz_t num);
Example #13
0
 private static extern void mpq_get_den(ref mpz_t den, ref mpq_t op);
Example #14
0
 private static extern void mpq_get_num(ref mpz_t num, ref mpq_t op);
Example #15
0
 private static extern int mpz_get_si(ref mpz_t src);
Example #16
0
 private static extern void mpz_clear(ref mpz_t src);
Example #17
0
 private static extern double mpz_get_d(ref mpz_t src);
Example #18
0
 private static extern void mpz_mul_si(ref mpz_t dest, ref mpz_t src, int val);
Example #19
0
 internal static extern int mpz_sizeinbase(ref mpz_t src, int _base);
Example #20
0
 private static extern void mpz_mul(ref mpz_t dest, ref mpz_t op1, ref mpz_t op2);
Example #21
0
 private static extern int mpz_cmp_d(ref mpz_t op1, double op2);
Example #22
0
 private static extern void mpz_tdiv_q(ref mpz_t dest, ref mpz_t src, ref mpz_t src2);
Example #23
0
 private static extern void mpz_sub(ref mpz_t rop, ref mpz_t op1, ref mpz_t op2);
Example #24
0
 private static extern void mpz_set(ref mpz_t dest, ref mpz_t src);
Example #25
0
 private static extern void mpz_pow_ui(ref mpz_t rop, ref mpz_t op, uint exp);
Example #26
0
 private static extern void mpz_set_si(ref mpz_t src, int value);
Example #27
0
 private static extern void mpz_mod(ref mpz_t rop, ref mpz_t op1, ref mpz_t mod);
Example #28
0
 private static extern int mpz_set_str(ref mpz_t rop, IntPtr s, int sbase);
Example #29
0
 private static extern int mpz_invert(ref mpz_t rop, ref mpz_t op1, ref mpz_t op2);
Example #30
0
 private static extern void mpz_root(ref mpz_t rop, ref mpz_t op, int root);