mini-gmp.h 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /* mini-gmp, a minimalistic implementation of a GNU GMP subset.
  2. Copyright 2011, 2012, 2013 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
  14. /* About mini-gmp: This is a minimal implementation of a subset of the
  15. GMP interface. It is intended for inclusion into applications which
  16. have modest bignums needs, as a fallback when the real GMP library
  17. is not installed.
  18. This file defines the public interface. */
  19. #ifndef __MINI_GMP_H__
  20. #define __MINI_GMP_H__
  21. /* For size_t */
  22. #include <stddef.h>
  23. #if defined (__cplusplus)
  24. extern "C" {
  25. #endif
  26. void mp_set_memory_functions (void *(*) (size_t),
  27. void *(*) (void *, size_t, size_t),
  28. void (*) (void *, size_t));
  29. void mp_get_memory_functions (void *(**) (size_t),
  30. void *(**) (void *, size_t, size_t),
  31. void (**) (void *, size_t));
  32. typedef unsigned long mp_limb_t;
  33. typedef long mp_size_t;
  34. typedef unsigned long mp_bitcnt_t;
  35. typedef mp_limb_t *mp_ptr;
  36. typedef const mp_limb_t *mp_srcptr;
  37. typedef struct
  38. {
  39. int _mp_alloc; /* Number of *limbs* allocated and pointed
  40. to by the _mp_d field. */
  41. int _mp_size; /* abs(_mp_size) is the number of limbs the
  42. last field points to. If _mp_size is
  43. negative this is a negative number. */
  44. mp_limb_t *_mp_d; /* Pointer to the limbs. */
  45. } __mpz_struct;
  46. typedef __mpz_struct mpz_t[1];
  47. typedef __mpz_struct *mpz_ptr;
  48. typedef const __mpz_struct *mpz_srcptr;
  49. void mpn_copyi (mp_ptr, mp_srcptr, mp_size_t);
  50. void mpn_copyd (mp_ptr, mp_srcptr, mp_size_t);
  51. int mpn_cmp (mp_srcptr, mp_srcptr, mp_size_t);
  52. mp_limb_t mpn_add_1 (mp_ptr, mp_srcptr, mp_size_t, mp_limb_t);
  53. mp_limb_t mpn_add_n (mp_ptr, mp_srcptr, mp_srcptr, mp_size_t);
  54. mp_limb_t mpn_add (mp_ptr, mp_srcptr, mp_size_t, mp_srcptr, mp_size_t);
  55. mp_limb_t mpn_sub_1 (mp_ptr, mp_srcptr, mp_size_t, mp_limb_t);
  56. mp_limb_t mpn_sub_n (mp_ptr, mp_srcptr, mp_srcptr, mp_size_t);
  57. mp_limb_t mpn_sub (mp_ptr, mp_srcptr, mp_size_t, mp_srcptr, mp_size_t);
  58. mp_limb_t mpn_mul_1 (mp_ptr, mp_srcptr, mp_size_t, mp_limb_t);
  59. mp_limb_t mpn_addmul_1 (mp_ptr, mp_srcptr, mp_size_t, mp_limb_t);
  60. mp_limb_t mpn_submul_1 (mp_ptr, mp_srcptr, mp_size_t, mp_limb_t);
  61. mp_limb_t mpn_mul (mp_ptr, mp_srcptr, mp_size_t, mp_srcptr, mp_size_t);
  62. void mpn_mul_n (mp_ptr, mp_srcptr, mp_srcptr, mp_size_t);
  63. void mpn_sqr (mp_ptr, mp_srcptr, mp_size_t);
  64. mp_limb_t mpn_lshift (mp_ptr, mp_srcptr, mp_size_t, unsigned int);
  65. mp_limb_t mpn_rshift (mp_ptr, mp_srcptr, mp_size_t, unsigned int);
  66. mp_limb_t mpn_invert_3by2 (mp_limb_t, mp_limb_t);
  67. #define mpn_invert_limb(x) mpn_invert_3by2 ((x), 0)
  68. size_t mpn_get_str (unsigned char *, int, mp_ptr, mp_size_t);
  69. mp_size_t mpn_set_str (mp_ptr, const unsigned char *, size_t, int);
  70. void mpz_init (mpz_t);
  71. void mpz_init2 (mpz_t, mp_bitcnt_t);
  72. void mpz_clear (mpz_t);
  73. #define mpz_odd_p(z) (((z)->_mp_size != 0) & (int) (z)->_mp_d[0])
  74. #define mpz_even_p(z) (! mpz_odd_p (z))
  75. int mpz_sgn (const mpz_t);
  76. int mpz_cmp_si (const mpz_t, long);
  77. int mpz_cmp_ui (const mpz_t, unsigned long);
  78. int mpz_cmp (const mpz_t, const mpz_t);
  79. int mpz_cmpabs_ui (const mpz_t, unsigned long);
  80. int mpz_cmpabs (const mpz_t, const mpz_t);
  81. int mpz_cmp_d (const mpz_t, double);
  82. int mpz_cmpabs_d (const mpz_t, double);
  83. void mpz_abs (mpz_t, const mpz_t);
  84. void mpz_neg (mpz_t, const mpz_t);
  85. void mpz_swap (mpz_t, mpz_t);
  86. void mpz_add_ui (mpz_t, const mpz_t, unsigned long);
  87. void mpz_add (mpz_t, const mpz_t, const mpz_t);
  88. void mpz_sub_ui (mpz_t, const mpz_t, unsigned long);
  89. void mpz_ui_sub (mpz_t, unsigned long, const mpz_t);
  90. void mpz_sub (mpz_t, const mpz_t, const mpz_t);
  91. void mpz_mul_si (mpz_t, const mpz_t, long int);
  92. void mpz_mul_ui (mpz_t, const mpz_t, unsigned long int);
  93. void mpz_mul (mpz_t, const mpz_t, const mpz_t);
  94. void mpz_mul_2exp (mpz_t, const mpz_t, mp_bitcnt_t);
  95. void mpz_cdiv_qr (mpz_t, mpz_t, const mpz_t, const mpz_t);
  96. void mpz_fdiv_qr (mpz_t, mpz_t, const mpz_t, const mpz_t);
  97. void mpz_tdiv_qr (mpz_t, mpz_t, const mpz_t, const mpz_t);
  98. void mpz_cdiv_q (mpz_t, const mpz_t, const mpz_t);
  99. void mpz_fdiv_q (mpz_t, const mpz_t, const mpz_t);
  100. void mpz_tdiv_q (mpz_t, const mpz_t, const mpz_t);
  101. void mpz_cdiv_r (mpz_t, const mpz_t, const mpz_t);
  102. void mpz_fdiv_r (mpz_t, const mpz_t, const mpz_t);
  103. void mpz_tdiv_r (mpz_t, const mpz_t, const mpz_t);
  104. void mpz_cdiv_q_2exp (mpz_t, const mpz_t, mp_bitcnt_t);
  105. void mpz_fdiv_q_2exp (mpz_t, const mpz_t, mp_bitcnt_t);
  106. void mpz_tdiv_q_2exp (mpz_t, const mpz_t, mp_bitcnt_t);
  107. void mpz_cdiv_r_2exp (mpz_t, const mpz_t, mp_bitcnt_t);
  108. void mpz_fdiv_r_2exp (mpz_t, const mpz_t, mp_bitcnt_t);
  109. void mpz_tdiv_r_2exp (mpz_t, const mpz_t, mp_bitcnt_t);
  110. void mpz_mod (mpz_t, const mpz_t, const mpz_t);
  111. void mpz_divexact (mpz_t, const mpz_t, const mpz_t);
  112. int mpz_divisible_p (const mpz_t, const mpz_t);
  113. unsigned long mpz_cdiv_qr_ui (mpz_t, mpz_t, const mpz_t, unsigned long);
  114. unsigned long mpz_fdiv_qr_ui (mpz_t, mpz_t, const mpz_t, unsigned long);
  115. unsigned long mpz_tdiv_qr_ui (mpz_t, mpz_t, const mpz_t, unsigned long);
  116. unsigned long mpz_cdiv_q_ui (mpz_t, const mpz_t, unsigned long);
  117. unsigned long mpz_fdiv_q_ui (mpz_t, const mpz_t, unsigned long);
  118. unsigned long mpz_tdiv_q_ui (mpz_t, const mpz_t, unsigned long);
  119. unsigned long mpz_cdiv_r_ui (mpz_t, const mpz_t, unsigned long);
  120. unsigned long mpz_fdiv_r_ui (mpz_t, const mpz_t, unsigned long);
  121. unsigned long mpz_tdiv_r_ui (mpz_t, const mpz_t, unsigned long);
  122. unsigned long mpz_cdiv_ui (const mpz_t, unsigned long);
  123. unsigned long mpz_fdiv_ui (const mpz_t, unsigned long);
  124. unsigned long mpz_tdiv_ui (const mpz_t, unsigned long);
  125. unsigned long mpz_mod_ui (mpz_t, const mpz_t, unsigned long);
  126. void mpz_divexact_ui (mpz_t, const mpz_t, unsigned long);
  127. int mpz_divisible_ui_p (const mpz_t, unsigned long);
  128. unsigned long mpz_gcd_ui (mpz_t, const mpz_t, unsigned long);
  129. void mpz_gcd (mpz_t, const mpz_t, const mpz_t);
  130. void mpz_gcdext (mpz_t, mpz_t, mpz_t, const mpz_t, const mpz_t);
  131. void mpz_lcm_ui (mpz_t, const mpz_t, unsigned long);
  132. void mpz_lcm (mpz_t, const mpz_t, const mpz_t);
  133. int mpz_invert (mpz_t, const mpz_t, const mpz_t);
  134. void mpz_sqrtrem (mpz_t, mpz_t, const mpz_t);
  135. void mpz_sqrt (mpz_t, const mpz_t);
  136. void mpz_pow_ui (mpz_t, const mpz_t, unsigned long);
  137. void mpz_ui_pow_ui (mpz_t, unsigned long, unsigned long);
  138. void mpz_powm (mpz_t, const mpz_t, const mpz_t, const mpz_t);
  139. void mpz_powm_ui (mpz_t, const mpz_t, unsigned long, const mpz_t);
  140. void mpz_rootrem (mpz_t, mpz_t, const mpz_t, unsigned long);
  141. int mpz_root (mpz_t, const mpz_t, unsigned long);
  142. void mpz_fac_ui (mpz_t, unsigned long);
  143. void mpz_bin_uiui (mpz_t, unsigned long, unsigned long);
  144. int mpz_tstbit (const mpz_t, mp_bitcnt_t);
  145. void mpz_setbit (mpz_t, mp_bitcnt_t);
  146. void mpz_clrbit (mpz_t, mp_bitcnt_t);
  147. void mpz_combit (mpz_t, mp_bitcnt_t);
  148. void mpz_com (mpz_t, const mpz_t);
  149. void mpz_and (mpz_t, const mpz_t, const mpz_t);
  150. void mpz_ior (mpz_t, const mpz_t, const mpz_t);
  151. void mpz_xor (mpz_t, const mpz_t, const mpz_t);
  152. mp_bitcnt_t mpz_popcount (const mpz_t);
  153. mp_bitcnt_t mpz_hamdist (const mpz_t, const mpz_t);
  154. mp_bitcnt_t mpz_scan0 (const mpz_t, mp_bitcnt_t);
  155. mp_bitcnt_t mpz_scan1 (const mpz_t, mp_bitcnt_t);
  156. int mpz_fits_slong_p (const mpz_t);
  157. int mpz_fits_ulong_p (const mpz_t);
  158. long int mpz_get_si (const mpz_t);
  159. unsigned long int mpz_get_ui (const mpz_t);
  160. double mpz_get_d (const mpz_t);
  161. size_t mpz_size (const mpz_t);
  162. mp_limb_t mpz_getlimbn (const mpz_t, mp_size_t);
  163. void mpz_set_si (mpz_t, signed long int);
  164. void mpz_set_ui (mpz_t, unsigned long int);
  165. void mpz_set (mpz_t, const mpz_t);
  166. void mpz_set_d (mpz_t, double);
  167. void mpz_init_set_si (mpz_t, signed long int);
  168. void mpz_init_set_ui (mpz_t, unsigned long int);
  169. void mpz_init_set (mpz_t, const mpz_t);
  170. void mpz_init_set_d (mpz_t, double);
  171. size_t mpz_sizeinbase (const mpz_t, int);
  172. char *mpz_get_str (char *, int, const mpz_t);
  173. int mpz_set_str (mpz_t, const char *, int);
  174. int mpz_init_set_str (mpz_t, const char *, int);
  175. /* This long list taken from gmp.h. */
  176. /* For reference, "defined(EOF)" cannot be used here. In g++ 2.95.4,
  177. <iostream> defines EOF but not FILE. */
  178. #if defined (FILE) \
  179. || defined (H_STDIO) \
  180. || defined (_H_STDIO) /* AIX */ \
  181. || defined (_STDIO_H) /* glibc, Sun, SCO */ \
  182. || defined (_STDIO_H_) /* BSD, OSF */ \
  183. || defined (__STDIO_H) /* Borland */ \
  184. || defined (__STDIO_H__) /* IRIX */ \
  185. || defined (_STDIO_INCLUDED) /* HPUX */ \
  186. || defined (__dj_include_stdio_h_) /* DJGPP */ \
  187. || defined (_FILE_DEFINED) /* Microsoft */ \
  188. || defined (__STDIO__) /* Apple MPW MrC */ \
  189. || defined (_MSL_STDIO_H) /* Metrowerks */ \
  190. || defined (_STDIO_H_INCLUDED) /* QNX4 */ \
  191. || defined (_ISO_STDIO_ISO_H) /* Sun C++ */ \
  192. || defined (__STDIO_LOADED) /* VMS */
  193. size_t mpz_out_str (FILE *, int, const mpz_t);
  194. #endif
  195. void mpz_import (mpz_t, size_t, int, size_t, int, size_t, const void *);
  196. void *mpz_export (void *, size_t *, int, size_t, int, size_t, const mpz_t);
  197. #if defined (__cplusplus)
  198. }
  199. #endif
  200. #endif /* __MINI_GMP_H__ */