Lines Matching defs:GMPZAPI

75 void GMPZAPI(abs)(mp_int rop, mp_int op) { CHECK(mp_int_abs(op, rop)); }  in GMPZAPI()  function
78 void GMPZAPI(add)(mp_int rop, mp_int op1, mp_int op2) { in GMPZAPI() function
83 void GMPZAPI(clear)(mp_int x) { mp_int_clear(x); } in GMPZAPI() function
86 int GMPZAPI(cmp_si)(mp_int op1, long op2) { in GMPZAPI() function
91 int GMPZAPI(cmpabs)(mp_int op1, mp_int op2) { in GMPZAPI() function
96 int GMPZAPI(cmp)(mp_int op1, mp_int op2) { return mp_int_compare(op1, op2); } in GMPZAPI() function
99 void GMPZAPI(init)(mp_int x) { CHECK(mp_int_init(x)); } in GMPZAPI() function
102 void GMPZAPI(mul)(mp_int rop, mp_int op1, mp_int op2) { in GMPZAPI() function
107 void GMPZAPI(neg)(mp_int rop, mp_int op) { CHECK(mp_int_neg(op, rop)); } in GMPZAPI() function
110 void GMPZAPI(set_si)(mp_int rop, long op) { CHECK(mp_int_set_value(rop, op)); } in GMPZAPI() function
113 void GMPZAPI(set)(mp_int rop, mp_int op) { CHECK(mp_int_copy(op, rop)); } in GMPZAPI() function
116 void GMPZAPI(sub)(mp_int rop, mp_int op1, mp_int op2) { in GMPZAPI() function
121 void GMPZAPI(swap)(mp_int rop1, mp_int rop2) { mp_int_swap(rop1, rop2); } in GMPZAPI() function
127 int GMPZAPI(sgn)(mp_int op) { return mp_int_compare_zero(op); } in GMPZAPI() function
135 void GMPZAPI(set_ui)(mp_int rop, unsigned long op) { in GMPZAPI() function
154 void GMPZAPI(addmul)(mp_int rop, mp_int op1, mp_int op2) { in GMPZAPI() function
166 void GMPZAPI(divexact)(mp_int q, mp_int n, mp_int d) { in GMPZAPI() function
173 int GMPZAPI(divisible_p)(mp_int n, mp_int d) { in GMPZAPI() function
195 void GMPZAPI(submul)(mp_int rop, mp_int op1, mp_int op2) { in GMPZAPI() function
207 void GMPZAPI(add_ui)(mp_int rop, mp_int op1, unsigned long op2) { in GMPZAPI() function
219 void GMPZAPI(divexact_ui)(mp_int q, mp_int n, unsigned long d) { in GMPZAPI() function
230 void GMPZAPI(mul_ui)(mp_int rop, mp_int op1, unsigned long op2) { in GMPZAPI() function
242 void GMPZAPI(pow_ui)(mp_int rop, mp_int base, unsigned long exp) { in GMPZAPI() function
259 void GMPZAPI(sub_ui)(mp_int rop, mp_int op1, unsigned long op2) { in GMPZAPI() function
276 void GMPZAPI(gcd)(mp_int rop, mp_int op1, mp_int op2) { in GMPZAPI() function
289 char *GMPZAPI(get_str)(char *str, int radix, mp_int op) { in GMPZAPI() function
350 int GMPZAPI(set_str)(mp_int rop, char *str, int base) { in GMPZAPI() function
419 unsigned long GMPZAPI(get_ui)(mp_int op) { in GMPZAPI() function
435 long GMPZAPI(get_si)(mp_int op) { in GMPZAPI() function
466 void GMPZAPI(lcm)(mp_int rop, mp_int op1, mp_int op2) { in GMPZAPI() function
481 void GMPZAPI(mul_2exp)(mp_int rop, mp_int op1, unsigned long op2) { in GMPZAPI() function
531 void GMPZAPI(cdiv_q)(mp_int q, mp_int n, mp_int d) { in GMPZAPI() function
562 void GMPZAPI(fdiv_q)(mp_int q, mp_int n, mp_int d) { in GMPZAPI() function
593 void GMPZAPI(fdiv_r)(mp_int r, mp_int n, mp_int d) { in GMPZAPI() function
623 void GMPZAPI(tdiv_q)(mp_int q, mp_int n, mp_int d) { in GMPZAPI() function
629 unsigned long GMPZAPI(fdiv_q_ui)(mp_int q, mp_int n, unsigned long d) { in GMPZAPI() function
655 void *GMPZAPI(export)(void *rop, size_t *countp, int order, size_t size, in GMPZAPI() function
734 void GMPZAPI(import)(mp_int rop, size_t count, int order, size_t size, in GMPZAPI() function
802 size_t GMPZAPI(sizeinbase)(mp_int op, int base) { in GMPZAPI() function