Lines Matching refs:GMPQAPI
58 void GMPQAPI(clear)(mp_rat x) { mp_rat_clear(x); } in GMPQAPI() function
61 int GMPQAPI(cmp)(mp_rat op1, mp_rat op2) { return mp_rat_compare(op1, op2); } in GMPQAPI() function
64 void GMPQAPI(init)(mp_rat x) { CHECK(mp_rat_init(x)); } in GMPQAPI() function
67 void GMPQAPI(mul)(mp_rat product, mp_rat multiplier, mp_rat multiplicand) { in GMPQAPI() function
72 void GMPQAPI(set)(mp_rat rop, mp_rat op) { CHECK(mp_rat_copy(op, rop)); } in GMPQAPI() function
124 int GMPQAPI(sgn)(mp_rat op) { return mp_rat_compare_zero(op); } in GMPQAPI() function
130 void GMPQAPI(set_ui)(mp_rat rop, unsigned long op1, unsigned long op2) { in GMPQAPI() function
140 mp_int GMPQAPI(denref)(mp_rat op) { return mp_rat_denom_ref(op); } in GMPQAPI() function
143 mp_int GMPQAPI(numref)(mp_rat op) { return mp_rat_numer_ref(op); } in GMPQAPI() function
146 void GMPQAPI(canonicalize)(mp_rat op) { CHECK(mp_rat_reduce(op)); } in GMPQAPI() function
317 char *GMPQAPI(get_str)(char *str, int radix, mp_rat op) { in GMPQAPI() function
356 int GMPQAPI(set_str)(mp_rat rop, char *s, int base) { in GMPQAPI() function