summaryrefslogtreecommitdiff
path: root/gmp.h
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-02-17 01:30:37 +0100
committerKevin Ryde <user42@zip.com.au>2000-02-17 01:30:37 +0100
commit6d26429001c305c5dd463779a45b2d49e21ccfc6 (patch)
tree903a1c1a64df840580ad3ff24777ae3d4ca21b8d /gmp.h
parent92a2cef8acaa260ea167547b46b35d0c8b9d90e9 (diff)
downloadgmp-6d26429001c305c5dd463779a45b2d49e21ccfc6.tar.gz
Add some mpn #defines.
Diffstat (limited to 'gmp.h')
-rw-r--r--gmp.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/gmp.h b/gmp.h
index 83e2cf3a3..b75434792 100644
--- a/gmp.h
+++ b/gmp.h
@@ -635,8 +635,13 @@ void mpf_urandomb _PROTO ((mpf_t rop, gmp_rand_state s));
#define mpn_add_nc __MPN(add_nc)
#define mpn_addmul_1 __MPN(addmul_1)
#define mpn_addsub_n __MPN(addsub_n)
+#define mpn_and_n __MPN(and_n)
+#define mpn_andn_n __MPN(andn_n)
#define mpn_bdivmod __MPN(bdivmod)
#define mpn_cmp __MPN(cmp)
+#define mpn_com_n __MPN(com_n)
+#define mpn_copyd __MPN(copyd)
+#define mpn_copyi __MPN(copyi)
#define mpn_divmod_1 __MPN(divmod_1)
#define mpn_divrem __MPN(divrem)
#define mpn_divrem_1 __MPN(divrem_1)
@@ -649,11 +654,16 @@ void mpf_urandomb _PROTO ((mpf_t rop, gmp_rand_state s));
#define mpn_gcdext __MPN(gcdext)
#define mpn_get_str __MPN(get_str)
#define mpn_hamdist __MPN(hamdist)
+#define mpn_ior_n __MPN(ior_n)
+#define mpn_iorn_n __MPN(iorn_n)
#define mpn_lshift __MPN(lshift)
#define mpn_mod_1 __MPN(mod_1)
#define mpn_mul __MPN(mul)
#define mpn_mul_1 __MPN(mul_1)
+#define mpn_mul_basecase __MPN(mul_basecase)
#define mpn_mul_n __MPN(mul_n)
+#define mpn_nand_n __MPN(nand_n)
+#define mpn_nior_n __MPN(nior_n)
#define mpn_perfect_square_p __MPN(perfect_square_p)
#define mpn_popcount __MPN(popcount)
#define mpn_preinv_mod_1 __MPN(preinv_mod_1)
@@ -665,12 +675,15 @@ void mpf_urandomb _PROTO ((mpf_t rop, gmp_rand_state s));
#define mpn_scan1 __MPN(scan1)
#define mpn_set_str __MPN(set_str)
#define mpn_sqrtrem __MPN(sqrtrem)
+#define mpn_sqr_basecase __MPN(sqr_basecase)
#define mpn_sub __MPN(sub)
#define mpn_sub_1 __MPN(sub_1)
#define mpn_sub_n __MPN(sub_n)
#define mpn_sub_nc __MPN(sub_nc)
#define mpn_submul_1 __MPN(submul_1)
#define mpn_udiv_w_sdiv __MPN(udiv_w_sdiv)
+#define mpn_xor_n __MPN(xor_n)
+#define mpn_xnor_n __MPN(xnor_n)
#if defined (__cplusplus)
extern "C" {