Home
last modified time | relevance | path

Searched defs:GMPZAPI (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/mit/isl/dist/imath/
H A Dgmp_compat.c75 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
[all …]
H A Dgmp_compat.h33 #define GMPZAPI(fun) impz_ ## fun macro