gmp-h.in
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:84k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Definitions for GNU multiple precision functions.   -*- mode: c -*-
  2. Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
  3. 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #ifndef __GMP_H__
  16. #if defined (__cplusplus)
  17. #include <iosfwd>   /* for std::istream, std::ostream, std::string */
  18. #include <cstdio>
  19. #endif
  20. /* Instantiated by configure. */
  21. #if ! defined (__GMP_WITHIN_CONFIGURE)
  22. #define __GMP_HAVE_HOST_CPU_FAMILY_power   @HAVE_HOST_CPU_FAMILY_power@
  23. #define __GMP_HAVE_HOST_CPU_FAMILY_powerpc @HAVE_HOST_CPU_FAMILY_powerpc@
  24. #define GMP_LIMB_BITS                      @GMP_LIMB_BITS@
  25. #define GMP_NAIL_BITS                      @GMP_NAIL_BITS@
  26. #endif
  27. #define GMP_NUMB_BITS     (GMP_LIMB_BITS - GMP_NAIL_BITS)
  28. #define GMP_NUMB_MASK     ((~ __GMP_CAST (mp_limb_t, 0)) >> GMP_NAIL_BITS)
  29. #define GMP_NUMB_MAX      GMP_NUMB_MASK
  30. #define GMP_NAIL_MASK     (~ GMP_NUMB_MASK)
  31. /* The following (everything under ifndef __GNU_MP__) must be identical in
  32.    gmp.h and mp.h to allow both to be included in an application or during
  33.    the library build.  */
  34. #ifndef __GNU_MP__
  35. #define __GNU_MP__ 5
  36. #define __need_size_t  /* tell gcc stddef.h we only want size_t */
  37. #if defined (__cplusplus)
  38. #include <cstddef>     /* for size_t */
  39. #else
  40. #include <stddef.h>    /* for size_t */
  41. #endif
  42. #undef __need_size_t
  43. /* Instantiated by configure. */
  44. #if ! defined (__GMP_WITHIN_CONFIGURE)
  45. @DEFN_LONG_LONG_LIMB@
  46. #define __GMP_LIBGMP_DLL  @LIBGMP_DLL@
  47. #endif
  48. /* __STDC__ - some ANSI compilers define this only to 0, hence the use of
  49.        "defined" and not "__STDC__-0".  In particular Sun workshop C 5.0
  50.        sets __STDC__ to 0, but requires "##" for token pasting.
  51.    _AIX - gnu ansidecl.h asserts that all known AIX compilers are ANSI but
  52.        don't always define __STDC__.
  53.    __DECC - current versions of DEC C (5.9 for instance) for alpha are ANSI,
  54.        but don't define __STDC__ in their default mode.  Don't know if old
  55.        versions might have been K&R, but let's not worry about that unless
  56.        someone is still using one.
  57.    _mips - gnu ansidecl.h says the RISC/OS MIPS compiler is ANSI in SVR4
  58.        mode, but doesn't define __STDC__.
  59.    _MSC_VER - Microsoft C is ANSI, but __STDC__ is undefined unless the /Za
  60.        option is given (in which case it's 1).
  61.    _WIN32 - tested for by gnu ansidecl.h, no doubt on the assumption that
  62.       all w32 compilers are ansi.
  63.    Note: This same set of tests is used by gen-psqr.c and
  64.    demos/expr/expr-impl.h, so if anything needs adding, then be sure to
  65.    update those too.  */
  66. #if  defined (__STDC__)                                 
  67.   || defined (__cplusplus)                              
  68.   || defined (_AIX)                                     
  69.   || defined (__DECC)                                   
  70.   || (defined (__mips) && defined (_SYSTYPE_SVR4))      
  71.   || defined (_MSC_VER)                                 
  72.   || defined (_WIN32)
  73. #define __GMP_HAVE_CONST        1
  74. #define __GMP_HAVE_PROTOTYPES   1
  75. #define __GMP_HAVE_TOKEN_PASTE  1
  76. #else
  77. #define __GMP_HAVE_CONST        0
  78. #define __GMP_HAVE_PROTOTYPES   0
  79. #define __GMP_HAVE_TOKEN_PASTE  0
  80. #endif
  81. #if __GMP_HAVE_CONST
  82. #define __gmp_const   const
  83. #define __gmp_signed  signed
  84. #else
  85. #define __gmp_const
  86. #define __gmp_signed
  87. #endif
  88. /* __GMP_DECLSPEC supports Windows DLL versions of libgmp, and is empty in
  89.    all other circumstances.
  90.    When compiling objects for libgmp, __GMP_DECLSPEC is an export directive,
  91.    or when compiling for an application it's an import directive.  The two
  92.    cases are differentiated by __GMP_WITHIN_GMP defined by the GMP Makefiles
  93.    (and not defined from an application).
  94.    __GMP_DECLSPEC_XX is similarly used for libgmpxx.  __GMP_WITHIN_GMPXX
  95.    indicates when building libgmpxx, and in that case libgmpxx functions are
  96.    exports, but libgmp functions which might get called are imports.
  97.    libmp.la uses __GMP_DECLSPEC, just as if it were libgmp.la.  libgmp and
  98.    libmp don't call each other, so there's no conflict or confusion.
  99.    Libtool DLL_EXPORT define is not used.
  100.    There's no attempt to support GMP built both static and DLL.  Doing so
  101.    would mean applications would have to tell us which of the two is going
  102.    to be used when linking, and that seems very tedious and error prone if
  103.    using GMP by hand, and equally tedious from a package since autoconf and
  104.    automake don't give much help.
  105.    __GMP_DECLSPEC is required on all documented global functions and
  106.    variables, the various internals in gmp-impl.h etc can be left unadorned.
  107.    But internals used by the test programs or speed measuring programs
  108.    should have __GMP_DECLSPEC, and certainly constants or variables must
  109.    have it or the wrong address will be resolved.
  110.    In gcc __declspec can go at either the start or end of a prototype.
  111.    In Microsoft C __declspec must go at the start, or after the type like
  112.    void __declspec(...) *foo()".  There's no __dllexport or anything to
  113.    guard against someone foolish #defining dllexport.  _export used to be
  114.    available, but no longer.
  115.    In Borland C _export still exists, but needs to go after the type, like
  116.    "void _export foo();".  Would have to change the __GMP_DECLSPEC syntax to
  117.    make use of that.  Probably more trouble than it's worth.  */
  118. #if defined (__GNUC__)
  119. #define __GMP_DECLSPEC_EXPORT  __declspec(__dllexport__)
  120. #define __GMP_DECLSPEC_IMPORT  __declspec(__dllimport__)
  121. #endif
  122. #if defined (_MSC_VER) || defined (__BORLANDC__)
  123. #define __GMP_DECLSPEC_EXPORT  __declspec(dllexport)
  124. #define __GMP_DECLSPEC_IMPORT  __declspec(dllimport)
  125. #endif
  126. #ifdef __WATCOMC__
  127. #define __GMP_DECLSPEC_EXPORT  __export
  128. #define __GMP_DECLSPEC_IMPORT  __import
  129. #endif
  130. #ifdef __IBMC__
  131. #define __GMP_DECLSPEC_EXPORT  _Export
  132. #define __GMP_DECLSPEC_IMPORT  _Import
  133. #endif
  134. #if __GMP_LIBGMP_DLL
  135. #if __GMP_WITHIN_GMP
  136. /* compiling to go into a DLL libgmp */
  137. #define __GMP_DECLSPEC  __GMP_DECLSPEC_EXPORT
  138. #else
  139. /* compiling to go into an application which will link to a DLL libgmp */
  140. #define __GMP_DECLSPEC  __GMP_DECLSPEC_IMPORT
  141. #endif
  142. #else
  143. /* all other cases */
  144. #define __GMP_DECLSPEC
  145. #endif
  146. #ifdef __GMP_SHORT_LIMB
  147. typedef unsigned int mp_limb_t;
  148. typedef int mp_limb_signed_t;
  149. #else
  150. #ifdef _LONG_LONG_LIMB
  151. typedef unsigned long long int mp_limb_t;
  152. typedef long long int mp_limb_signed_t;
  153. #else
  154. typedef unsigned long int mp_limb_t;
  155. typedef long int mp_limb_signed_t;
  156. #endif
  157. #endif
  158. typedef unsigned long int mp_bitcnt_t;
  159. /* For reference, note that the name __mpz_struct gets into C++ mangled
  160.    function names, which means although the "__" suggests an internal, we
  161.    must leave this name for binary compatibility.  */
  162. typedef struct
  163. {
  164.   int _mp_alloc; /* Number of *limbs* allocated and pointed
  165.    to by the _mp_d field.  */
  166.   int _mp_size; /* abs(_mp_size) is the number of limbs the
  167.    last field points to.  If _mp_size is
  168.    negative this is a negative number.  */
  169.   mp_limb_t *_mp_d; /* Pointer to the limbs.  */
  170. } __mpz_struct;
  171. #endif /* __GNU_MP__ */
  172. typedef __mpz_struct MP_INT;    /* gmp 1 source compatibility */
  173. typedef __mpz_struct mpz_t[1];
  174. typedef mp_limb_t * mp_ptr;
  175. typedef __gmp_const mp_limb_t * mp_srcptr;
  176. #if defined (_CRAY) && ! defined (_CRAYMPP)
  177. /* plain `int' is much faster (48 bits) */
  178. #define __GMP_MP_SIZE_T_INT     1
  179. typedef int mp_size_t;
  180. typedef int mp_exp_t;
  181. #else
  182. #define __GMP_MP_SIZE_T_INT     0
  183. typedef long int mp_size_t;
  184. typedef long int mp_exp_t;
  185. #endif
  186. typedef struct
  187. {
  188.   __mpz_struct _mp_num;
  189.   __mpz_struct _mp_den;
  190. } __mpq_struct;
  191. typedef __mpq_struct MP_RAT;    /* gmp 1 source compatibility */
  192. typedef __mpq_struct mpq_t[1];
  193. typedef struct
  194. {
  195.   int _mp_prec; /* Max precision, in number of `mp_limb_t's.
  196.    Set by mpf_init and modified by
  197.    mpf_set_prec.  The area pointed to by the
  198.    _mp_d field contains `prec' + 1 limbs.  */
  199.   int _mp_size; /* abs(_mp_size) is the number of limbs the
  200.    last field points to.  If _mp_size is
  201.    negative this is a negative number.  */
  202.   mp_exp_t _mp_exp; /* Exponent, in the base of `mp_limb_t'.  */
  203.   mp_limb_t *_mp_d; /* Pointer to the limbs.  */
  204. } __mpf_struct;
  205. /* typedef __mpf_struct MP_FLOAT; */
  206. typedef __mpf_struct mpf_t[1];
  207. /* Available random number generation algorithms.  */
  208. typedef enum
  209. {
  210.   GMP_RAND_ALG_DEFAULT = 0,
  211.   GMP_RAND_ALG_LC = GMP_RAND_ALG_DEFAULT /* Linear congruential.  */
  212. } gmp_randalg_t;
  213. /* Random state struct.  */
  214. typedef struct
  215. {
  216.   mpz_t _mp_seed;   /* _mp_d member points to state of the generator. */
  217.   gmp_randalg_t _mp_alg;  /* Currently unused. */
  218.   union {
  219.     void *_mp_lc;         /* Pointer to function pointers structure.  */
  220.   } _mp_algdata;
  221. } __gmp_randstate_struct;
  222. typedef __gmp_randstate_struct gmp_randstate_t[1];
  223. /* Types for function declarations in gmp files.  */
  224. /* ??? Should not pollute user name space with these ??? */
  225. typedef __gmp_const __mpz_struct *mpz_srcptr;
  226. typedef __mpz_struct *mpz_ptr;
  227. typedef __gmp_const __mpf_struct *mpf_srcptr;
  228. typedef __mpf_struct *mpf_ptr;
  229. typedef __gmp_const __mpq_struct *mpq_srcptr;
  230. typedef __mpq_struct *mpq_ptr;
  231. /* This is not wanted in mp.h, so put it outside the __GNU_MP__ common
  232.    section. */
  233. #if __GMP_LIBGMP_DLL
  234. #if __GMP_WITHIN_GMPXX
  235. /* compiling to go into a DLL libgmpxx */
  236. #define __GMP_DECLSPEC_XX  __GMP_DECLSPEC_EXPORT
  237. #else
  238. /* compiling to go into a application which will link to a DLL libgmpxx */
  239. #define __GMP_DECLSPEC_XX  __GMP_DECLSPEC_IMPORT
  240. #endif
  241. #else
  242. /* all other cases */
  243. #define __GMP_DECLSPEC_XX
  244. #endif
  245. #if __GMP_HAVE_PROTOTYPES
  246. #define __GMP_PROTO(x) x
  247. #else
  248. #define __GMP_PROTO(x) ()
  249. #endif
  250. #ifndef __MPN
  251. #if __GMP_HAVE_TOKEN_PASTE
  252. #define __MPN(x) __gmpn_##x
  253. #else
  254. #define __MPN(x) __gmpn_/**/x
  255. #endif
  256. #endif
  257. /* For reference, "defined(EOF)" cannot be used here.  In g++ 2.95.4,
  258.    <iostream> defines EOF but not FILE.  */
  259. #if defined (FILE)                                              
  260.   || defined (H_STDIO)                                          
  261.   || defined (_H_STDIO)               /* AIX */                 
  262.   || defined (_STDIO_H)               /* glibc, Sun, SCO */     
  263.   || defined (_STDIO_H_)              /* BSD, OSF */            
  264.   || defined (__STDIO_H)              /* Borland */             
  265.   || defined (__STDIO_H__)            /* IRIX */                
  266.   || defined (_STDIO_INCLUDED)        /* HPUX */                
  267.   || defined (__dj_include_stdio_h_)  /* DJGPP */               
  268.   || defined (_FILE_DEFINED)          /* Microsoft */           
  269.   || defined (__STDIO__)              /* Apple MPW MrC */       
  270.   || defined (_MSL_STDIO_H)           /* Metrowerks */          
  271.   || defined (_STDIO_H_INCLUDED)      /* QNX4 */
  272.   || defined (_ISO_STDIO_ISO_H)       /* Sun C++ */
  273. #define _GMP_H_HAVE_FILE 1
  274. #endif
  275. /* In ISO C, if a prototype involving "struct obstack *" is given without
  276.    that structure defined, then the struct is scoped down to just the
  277.    prototype, causing a conflict if it's subsequently defined for real.  So
  278.    only give prototypes if we've got obstack.h.  */
  279. #if defined (_OBSTACK_H)   /* glibc <obstack.h> */
  280. #define _GMP_H_HAVE_OBSTACK 1
  281. #endif
  282. /* The prototypes for gmp_vprintf etc are provided only if va_list is
  283.    available, via an application having included <stdarg.h> or <varargs.h>.
  284.    Usually va_list is a typedef so can't be tested directly, but C99
  285.    specifies that va_start is a macro (and it was normally a macro on past
  286.    systems too), so look for that.
  287.    <stdio.h> will define some sort of va_list for vprintf and vfprintf, but
  288.    let's not bother trying to use that since it's not standard and since
  289.    application uses for gmp_vprintf etc will almost certainly require the
  290.    whole <stdarg.h> or <varargs.h> anyway.  */
  291. #ifdef va_start
  292. #define _GMP_H_HAVE_VA_LIST 1
  293. #endif
  294. /* Test for gcc >= maj.min, as per __GNUC_PREREQ in glibc */
  295. #if defined (__GNUC__) && defined (__GNUC_MINOR__)
  296. #define __GMP_GNUC_PREREQ(maj, min) 
  297.   ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
  298. #else
  299. #define __GMP_GNUC_PREREQ(maj, min)  0
  300. #endif
  301. /* "pure" is in gcc 2.96 and up, see "(gcc)Function Attributes".  Basically
  302.    it means a function does nothing but examine its arguments and memory
  303.    (global or via arguments) to generate a return value, but changes nothing
  304.    and has no side-effects.  __GMP_NO_ATTRIBUTE_CONST_PURE lets
  305.    tune/common.c etc turn this off when trying to write timing loops.  */
  306. #if __GMP_GNUC_PREREQ (2,96) && ! defined (__GMP_NO_ATTRIBUTE_CONST_PURE)
  307. #define __GMP_ATTRIBUTE_PURE   __attribute__ ((__pure__))
  308. #else
  309. #define __GMP_ATTRIBUTE_PURE
  310. #endif
  311. /* __GMP_CAST allows us to use static_cast in C++, so our macros are clean
  312.    to "g++ -Wold-style-cast".
  313.    Casts in "extern inline" code within an extern "C" block don't induce
  314.    these warnings, so __GMP_CAST only needs to be used on documented
  315.    macros.  */
  316. #ifdef __cplusplus
  317. #define __GMP_CAST(type, expr)  (static_cast<type> (expr))
  318. #else
  319. #define __GMP_CAST(type, expr)  ((type) (expr))
  320. #endif
  321. /* An empty "throw ()" means the function doesn't throw any C++ exceptions,
  322.    this can save some stack frame info in applications.
  323.    Currently it's given only on functions which never divide-by-zero etc,
  324.    don't allocate memory, and are expected to never need to allocate memory.
  325.    This leaves open the possibility of a C++ throw from a future GMP
  326.    exceptions scheme.
  327.    mpz_set_ui etc are omitted to leave open the lazy allocation scheme
  328.    described in doc/tasks.html.  mpz_get_d etc are omitted to leave open
  329.    exceptions for float overflows.
  330.    Note that __GMP_NOTHROW must be given on any inlines the same as on their
  331.    prototypes (for g++ at least, where they're used together).  Note also
  332.    that g++ 3.0 demands that __GMP_NOTHROW is before other attributes like
  333.    __GMP_ATTRIBUTE_PURE.  */
  334. #if defined (__cplusplus)
  335. #define __GMP_NOTHROW  throw ()
  336. #else
  337. #define __GMP_NOTHROW
  338. #endif
  339. /* PORTME: What other compilers have a useful "extern inline"?  "static
  340.    inline" would be an acceptable substitute if the compiler (or linker)
  341.    discards unused statics.  */
  342.  /* gcc has __inline__ in all modes, including strict ansi.  Give a prototype
  343.     for an inline too, so as to correctly specify "dllimport" on windows, in
  344.     case the function is called rather than inlined.
  345.     GCC 4.3 and above with -std=c99 or -std=gnu99 implements ISO C99
  346.     inline semantics, unless -fgnu89-inline is used.  */
  347. #ifdef __GNUC__
  348. #if (defined __GNUC_STDC_INLINE__) || (__GNUC__ == 4 && __GNUC_MINOR__ == 2)
  349. #define __GMP_EXTERN_INLINE extern __inline__ __attribute__ ((__gnu_inline__))
  350. #else
  351. #define __GMP_EXTERN_INLINE      extern __inline__
  352. #endif
  353. #define __GMP_INLINE_PROTOTYPES  1
  354. #endif
  355. /* DEC C (eg. version 5.9) supports "static __inline foo()", even in -std1
  356.    strict ANSI mode.  Inlining is done even when not optimizing (ie. -O0
  357.    mode, which is the default), but an unnecessary local copy of foo is
  358.    emitted unless -O is used.  "extern __inline" is accepted, but the
  359.    "extern" appears to be ignored, ie. it becomes a plain global function
  360.    but which is inlined within its file.  Don't know if all old versions of
  361.    DEC C supported __inline, but as a start let's do the right thing for
  362.    current versions.  */
  363. #ifdef __DECC
  364. #define __GMP_EXTERN_INLINE  static __inline
  365. #endif
  366. /* SCO OpenUNIX 8 cc supports "static inline foo()" but not in -Xc strict
  367.    ANSI mode (__STDC__ is 1 in that mode).  Inlining only actually takes
  368.    place under -O.  Without -O "foo" seems to be emitted whether it's used
  369.    or not, which is wasteful.  "extern inline foo()" isn't useful, the
  370.    "extern" is apparently ignored, so foo is inlined if possible but also
  371.    emitted as a global, which causes multiple definition errors when
  372.    building a shared libgmp.  */
  373. #ifdef __SCO_VERSION__
  374. #if __SCO_VERSION__ > 400000000 && __STDC__ != 1 
  375.   && ! defined (__GMP_EXTERN_INLINE)
  376. #define __GMP_EXTERN_INLINE  static inline
  377. #endif
  378. #endif
  379. /* Microsoft's C compiler accepts __inline */
  380. #ifdef _MSC_VER
  381. #define __GMP_EXTERN_INLINE  __inline
  382. #endif
  383. /* Recent enough Sun C compilers want "inline" */
  384. #if defined (__SUNPRO_C) && __SUNPRO_C >= 0x560 
  385.   && ! defined (__GMP_EXTERN_INLINE)
  386. #define __GMP_EXTERN_INLINE  inline
  387. #endif
  388. /* Somewhat older Sun C compilers want "static inline" */
  389. #if defined (__SUNPRO_C) && __SUNPRO_C >= 0x540 
  390.   && ! defined (__GMP_EXTERN_INLINE)
  391. #define __GMP_EXTERN_INLINE  static inline
  392. #endif
  393. /* C++ always has "inline" and since it's a normal feature the linker should
  394.    discard duplicate non-inlined copies, or if it doesn't then that's a
  395.    problem for everyone, not just GMP.  */
  396. #if defined (__cplusplus) && ! defined (__GMP_EXTERN_INLINE)
  397. #define __GMP_EXTERN_INLINE  inline
  398. #endif
  399. /* Don't do any inlining within a configure run, since if the compiler ends
  400.    up emitting copies of the code into the object file it can end up
  401.    demanding the various support routines (like mpn_popcount) for linking,
  402.    making the "alloca" test and perhaps others fail.  And on hppa ia64 a
  403.    pre-release gcc 3.2 was seen not respecting the "extern" in "extern
  404.    __inline__", triggering this problem too.  */
  405. #if defined (__GMP_WITHIN_CONFIGURE) && ! __GMP_WITHIN_CONFIGURE_INLINE
  406. #undef __GMP_EXTERN_INLINE
  407. #endif
  408. /* By default, don't give a prototype when there's going to be an inline
  409.    version.  Note in particular that Cray C++ objects to the combination of
  410.    prototype and inline.  */
  411. #ifdef __GMP_EXTERN_INLINE
  412. #ifndef __GMP_INLINE_PROTOTYPES
  413. #define __GMP_INLINE_PROTOTYPES  0
  414. #endif
  415. #else
  416. #define __GMP_INLINE_PROTOTYPES  1
  417. #endif
  418. #define __GMP_ABS(x)   ((x) >= 0 ? (x) : -(x))
  419. #define __GMP_MAX(h,i) ((h) > (i) ? (h) : (i))
  420. /* __GMP_USHRT_MAX is not "~ (unsigned short) 0" because short is promoted
  421.    to int by "~".  */
  422. #define __GMP_UINT_MAX   (~ (unsigned) 0)
  423. #define __GMP_ULONG_MAX  (~ (unsigned long) 0)
  424. #define __GMP_USHRT_MAX  ((unsigned short) ~0)
  425. /* __builtin_expect is in gcc 3.0, and not in 2.95. */
  426. #if __GMP_GNUC_PREREQ (3,0)
  427. #define __GMP_LIKELY(cond)    __builtin_expect ((cond) != 0, 1)
  428. #define __GMP_UNLIKELY(cond)  __builtin_expect ((cond) != 0, 0)
  429. #else
  430. #define __GMP_LIKELY(cond)    (cond)
  431. #define __GMP_UNLIKELY(cond)  (cond)
  432. #endif
  433. #ifdef _CRAY
  434. #define __GMP_CRAY_Pragma(str)  _Pragma (str)
  435. #else
  436. #define __GMP_CRAY_Pragma(str)
  437. #endif
  438. /* Allow direct user access to numerator and denominator of a mpq_t object.  */
  439. #define mpq_numref(Q) (&((Q)->_mp_num))
  440. #define mpq_denref(Q) (&((Q)->_mp_den))
  441. #if defined (__cplusplus)
  442. extern "C" {
  443. using std::FILE;
  444. #endif
  445. #define mp_set_memory_functions __gmp_set_memory_functions
  446. __GMP_DECLSPEC void mp_set_memory_functions __GMP_PROTO ((void *(*) (size_t),
  447.       void *(*) (void *, size_t, size_t),
  448.       void (*) (void *, size_t))) __GMP_NOTHROW;
  449. #define mp_get_memory_functions __gmp_get_memory_functions
  450. __GMP_DECLSPEC void mp_get_memory_functions __GMP_PROTO ((void *(**) (size_t),
  451.                                       void *(**) (void *, size_t, size_t),
  452.                                       void (**) (void *, size_t))) __GMP_NOTHROW;
  453. #define mp_bits_per_limb __gmp_bits_per_limb
  454. __GMP_DECLSPEC extern __gmp_const int mp_bits_per_limb;
  455. #define gmp_errno __gmp_errno
  456. __GMP_DECLSPEC extern int gmp_errno;
  457. #define gmp_version __gmp_version
  458. __GMP_DECLSPEC extern __gmp_const char * __gmp_const gmp_version;
  459. /**************** Random number routines.  ****************/
  460. /* obsolete */
  461. #define gmp_randinit __gmp_randinit
  462. __GMP_DECLSPEC void gmp_randinit __GMP_PROTO ((gmp_randstate_t, gmp_randalg_t, ...));
  463. #define gmp_randinit_default __gmp_randinit_default
  464. __GMP_DECLSPEC void gmp_randinit_default __GMP_PROTO ((gmp_randstate_t));
  465. #define gmp_randinit_lc_2exp __gmp_randinit_lc_2exp
  466. __GMP_DECLSPEC void gmp_randinit_lc_2exp __GMP_PROTO ((gmp_randstate_t,
  467.        mpz_srcptr, unsigned long int,
  468.        mp_bitcnt_t));
  469. #define gmp_randinit_lc_2exp_size __gmp_randinit_lc_2exp_size
  470. __GMP_DECLSPEC int gmp_randinit_lc_2exp_size __GMP_PROTO ((gmp_randstate_t, mp_bitcnt_t));
  471. #define gmp_randinit_mt __gmp_randinit_mt
  472. __GMP_DECLSPEC void gmp_randinit_mt __GMP_PROTO ((gmp_randstate_t));
  473. #define gmp_randinit_set __gmp_randinit_set
  474. __GMP_DECLSPEC void gmp_randinit_set __GMP_PROTO ((gmp_randstate_t, __gmp_const __gmp_randstate_struct *));
  475. #define gmp_randseed __gmp_randseed
  476. __GMP_DECLSPEC void gmp_randseed __GMP_PROTO ((gmp_randstate_t, mpz_srcptr));
  477. #define gmp_randseed_ui __gmp_randseed_ui
  478. __GMP_DECLSPEC void gmp_randseed_ui __GMP_PROTO ((gmp_randstate_t, unsigned long int));
  479. #define gmp_randclear __gmp_randclear
  480. __GMP_DECLSPEC void gmp_randclear __GMP_PROTO ((gmp_randstate_t));
  481. #define gmp_urandomb_ui __gmp_urandomb_ui
  482. __GMP_DECLSPEC unsigned long gmp_urandomb_ui __GMP_PROTO ((gmp_randstate_t, unsigned long));
  483. #define gmp_urandomm_ui __gmp_urandomm_ui
  484. __GMP_DECLSPEC unsigned long gmp_urandomm_ui __GMP_PROTO ((gmp_randstate_t, unsigned long));
  485. /**************** Formatted output routines.  ****************/
  486. #define gmp_asprintf __gmp_asprintf
  487. __GMP_DECLSPEC int gmp_asprintf __GMP_PROTO ((char **, __gmp_const char *, ...));
  488. #define gmp_fprintf __gmp_fprintf
  489. #ifdef _GMP_H_HAVE_FILE
  490. __GMP_DECLSPEC int gmp_fprintf __GMP_PROTO ((FILE *, __gmp_const char *, ...));
  491. #endif
  492. #define gmp_obstack_printf __gmp_obstack_printf
  493. #if defined (_GMP_H_HAVE_OBSTACK)
  494. __GMP_DECLSPEC int gmp_obstack_printf __GMP_PROTO ((struct obstack *, __gmp_const char *, ...));
  495. #endif
  496. #define gmp_obstack_vprintf __gmp_obstack_vprintf
  497. #if defined (_GMP_H_HAVE_OBSTACK) && defined (_GMP_H_HAVE_VA_LIST)
  498. __GMP_DECLSPEC int gmp_obstack_vprintf __GMP_PROTO ((struct obstack *, __gmp_const char *, va_list));
  499. #endif
  500. #define gmp_printf __gmp_printf
  501. __GMP_DECLSPEC int gmp_printf __GMP_PROTO ((__gmp_const char *, ...));
  502. #define gmp_snprintf __gmp_snprintf
  503. __GMP_DECLSPEC int gmp_snprintf __GMP_PROTO ((char *, size_t, __gmp_const char *, ...));
  504. #define gmp_sprintf __gmp_sprintf
  505. __GMP_DECLSPEC int gmp_sprintf __GMP_PROTO ((char *, __gmp_const char *, ...));
  506. #define gmp_vasprintf __gmp_vasprintf
  507. #if defined (_GMP_H_HAVE_VA_LIST)
  508. __GMP_DECLSPEC int gmp_vasprintf __GMP_PROTO ((char **, __gmp_const char *, va_list));
  509. #endif
  510. #define gmp_vfprintf __gmp_vfprintf
  511. #if defined (_GMP_H_HAVE_FILE) && defined (_GMP_H_HAVE_VA_LIST)
  512. __GMP_DECLSPEC int gmp_vfprintf __GMP_PROTO ((FILE *, __gmp_const char *, va_list));
  513. #endif
  514. #define gmp_vprintf __gmp_vprintf
  515. #if defined (_GMP_H_HAVE_VA_LIST)
  516. __GMP_DECLSPEC int gmp_vprintf __GMP_PROTO ((__gmp_const char *, va_list));
  517. #endif
  518. #define gmp_vsnprintf __gmp_vsnprintf
  519. #if defined (_GMP_H_HAVE_VA_LIST)
  520. __GMP_DECLSPEC int gmp_vsnprintf __GMP_PROTO ((char *, size_t, __gmp_const char *, va_list));
  521. #endif
  522. #define gmp_vsprintf __gmp_vsprintf
  523. #if defined (_GMP_H_HAVE_VA_LIST)
  524. __GMP_DECLSPEC int gmp_vsprintf __GMP_PROTO ((char *, __gmp_const char *, va_list));
  525. #endif
  526. /**************** Formatted input routines.  ****************/
  527. #define gmp_fscanf __gmp_fscanf
  528. #ifdef _GMP_H_HAVE_FILE
  529. __GMP_DECLSPEC int gmp_fscanf __GMP_PROTO ((FILE *, __gmp_const char *, ...));
  530. #endif
  531. #define gmp_scanf __gmp_scanf
  532. __GMP_DECLSPEC int gmp_scanf __GMP_PROTO ((__gmp_const char *, ...));
  533. #define gmp_sscanf __gmp_sscanf
  534. __GMP_DECLSPEC int gmp_sscanf __GMP_PROTO ((__gmp_const char *, __gmp_const char *, ...));
  535. #define gmp_vfscanf __gmp_vfscanf
  536. #if defined (_GMP_H_HAVE_FILE) && defined (_GMP_H_HAVE_VA_LIST)
  537. __GMP_DECLSPEC int gmp_vfscanf __GMP_PROTO ((FILE *, __gmp_const char *, va_list));
  538. #endif
  539. #define gmp_vscanf __gmp_vscanf
  540. #if defined (_GMP_H_HAVE_VA_LIST)
  541. __GMP_DECLSPEC int gmp_vscanf __GMP_PROTO ((__gmp_const char *, va_list));
  542. #endif
  543. #define gmp_vsscanf __gmp_vsscanf
  544. #if defined (_GMP_H_HAVE_VA_LIST)
  545. __GMP_DECLSPEC int gmp_vsscanf __GMP_PROTO ((__gmp_const char *, __gmp_const char *, va_list));
  546. #endif
  547. /**************** Integer (i.e. Z) routines.  ****************/
  548. #define _mpz_realloc __gmpz_realloc
  549. #define mpz_realloc __gmpz_realloc
  550. __GMP_DECLSPEC void *_mpz_realloc __GMP_PROTO ((mpz_ptr, mp_size_t));
  551. #define mpz_abs __gmpz_abs
  552. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_abs)
  553. __GMP_DECLSPEC void mpz_abs __GMP_PROTO ((mpz_ptr, mpz_srcptr));
  554. #endif
  555. #define mpz_add __gmpz_add
  556. __GMP_DECLSPEC void mpz_add __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  557. #define mpz_add_ui __gmpz_add_ui
  558. __GMP_DECLSPEC void mpz_add_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  559. #define mpz_addmul __gmpz_addmul
  560. __GMP_DECLSPEC void mpz_addmul __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  561. #define mpz_addmul_ui __gmpz_addmul_ui
  562. __GMP_DECLSPEC void mpz_addmul_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  563. #define mpz_and __gmpz_and
  564. __GMP_DECLSPEC void mpz_and __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  565. #define mpz_array_init __gmpz_array_init
  566. __GMP_DECLSPEC void mpz_array_init __GMP_PROTO ((mpz_ptr, mp_size_t, mp_size_t));
  567. #define mpz_bin_ui __gmpz_bin_ui
  568. __GMP_DECLSPEC void mpz_bin_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  569. #define mpz_bin_uiui __gmpz_bin_uiui
  570. __GMP_DECLSPEC void mpz_bin_uiui __GMP_PROTO ((mpz_ptr, unsigned long int, unsigned long int));
  571. #define mpz_cdiv_q __gmpz_cdiv_q
  572. __GMP_DECLSPEC void mpz_cdiv_q __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  573. #define mpz_cdiv_q_2exp __gmpz_cdiv_q_2exp
  574. __GMP_DECLSPEC void mpz_cdiv_q_2exp __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long));
  575. #define mpz_cdiv_q_ui __gmpz_cdiv_q_ui
  576. __GMP_DECLSPEC unsigned long int mpz_cdiv_q_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  577. #define mpz_cdiv_qr __gmpz_cdiv_qr
  578. __GMP_DECLSPEC void mpz_cdiv_qr __GMP_PROTO ((mpz_ptr, mpz_ptr, mpz_srcptr, mpz_srcptr));
  579. #define mpz_cdiv_qr_ui __gmpz_cdiv_qr_ui
  580. __GMP_DECLSPEC unsigned long int mpz_cdiv_qr_ui __GMP_PROTO ((mpz_ptr, mpz_ptr, mpz_srcptr, unsigned long int));
  581. #define mpz_cdiv_r __gmpz_cdiv_r
  582. __GMP_DECLSPEC void mpz_cdiv_r __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  583. #define mpz_cdiv_r_2exp __gmpz_cdiv_r_2exp
  584. __GMP_DECLSPEC void mpz_cdiv_r_2exp __GMP_PROTO ((mpz_ptr, mpz_srcptr, mp_bitcnt_t));
  585. #define mpz_cdiv_r_ui __gmpz_cdiv_r_ui
  586. __GMP_DECLSPEC unsigned long int mpz_cdiv_r_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  587. #define mpz_cdiv_ui __gmpz_cdiv_ui
  588. __GMP_DECLSPEC unsigned long int mpz_cdiv_ui __GMP_PROTO ((mpz_srcptr, unsigned long int)) __GMP_ATTRIBUTE_PURE;
  589. #define mpz_clear __gmpz_clear
  590. __GMP_DECLSPEC void mpz_clear __GMP_PROTO ((mpz_ptr));
  591. #define mpz_clears __gmpz_clears
  592. __GMP_DECLSPEC void mpz_clears __GMP_PROTO ((mpz_ptr, ...));
  593. #define mpz_clrbit __gmpz_clrbit
  594. __GMP_DECLSPEC void mpz_clrbit __GMP_PROTO ((mpz_ptr, mp_bitcnt_t));
  595. #define mpz_cmp __gmpz_cmp
  596. __GMP_DECLSPEC int mpz_cmp __GMP_PROTO ((mpz_srcptr, mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  597. #define mpz_cmp_d __gmpz_cmp_d
  598. __GMP_DECLSPEC int mpz_cmp_d __GMP_PROTO ((mpz_srcptr, double)) __GMP_ATTRIBUTE_PURE;
  599. #define _mpz_cmp_si __gmpz_cmp_si
  600. __GMP_DECLSPEC int _mpz_cmp_si __GMP_PROTO ((mpz_srcptr, signed long int)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  601. #define _mpz_cmp_ui __gmpz_cmp_ui
  602. __GMP_DECLSPEC int _mpz_cmp_ui __GMP_PROTO ((mpz_srcptr, unsigned long int)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  603. #define mpz_cmpabs __gmpz_cmpabs
  604. __GMP_DECLSPEC int mpz_cmpabs __GMP_PROTO ((mpz_srcptr, mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  605. #define mpz_cmpabs_d __gmpz_cmpabs_d
  606. __GMP_DECLSPEC int mpz_cmpabs_d __GMP_PROTO ((mpz_srcptr, double)) __GMP_ATTRIBUTE_PURE;
  607. #define mpz_cmpabs_ui __gmpz_cmpabs_ui
  608. __GMP_DECLSPEC int mpz_cmpabs_ui __GMP_PROTO ((mpz_srcptr, unsigned long int)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  609. #define mpz_com __gmpz_com
  610. __GMP_DECLSPEC void mpz_com __GMP_PROTO ((mpz_ptr, mpz_srcptr));
  611. #define mpz_combit __gmpz_combit
  612. __GMP_DECLSPEC void mpz_combit __GMP_PROTO ((mpz_ptr, mp_bitcnt_t));
  613. #define mpz_congruent_p __gmpz_congruent_p
  614. __GMP_DECLSPEC int mpz_congruent_p __GMP_PROTO ((mpz_srcptr, mpz_srcptr, mpz_srcptr)) __GMP_ATTRIBUTE_PURE;
  615. #define mpz_congruent_2exp_p __gmpz_congruent_2exp_p
  616. __GMP_DECLSPEC int mpz_congruent_2exp_p __GMP_PROTO ((mpz_srcptr, mpz_srcptr, mp_bitcnt_t)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  617. #define mpz_congruent_ui_p __gmpz_congruent_ui_p
  618. __GMP_DECLSPEC int mpz_congruent_ui_p __GMP_PROTO ((mpz_srcptr, unsigned long, unsigned long)) __GMP_ATTRIBUTE_PURE;
  619. #define mpz_divexact __gmpz_divexact
  620. __GMP_DECLSPEC void mpz_divexact __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  621. #define mpz_divexact_ui __gmpz_divexact_ui
  622. __GMP_DECLSPEC void mpz_divexact_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long));
  623. #define mpz_divisible_p __gmpz_divisible_p
  624. __GMP_DECLSPEC int mpz_divisible_p __GMP_PROTO ((mpz_srcptr, mpz_srcptr)) __GMP_ATTRIBUTE_PURE;
  625. #define mpz_divisible_ui_p __gmpz_divisible_ui_p
  626. __GMP_DECLSPEC int mpz_divisible_ui_p __GMP_PROTO ((mpz_srcptr, unsigned long)) __GMP_ATTRIBUTE_PURE;
  627. #define mpz_divisible_2exp_p __gmpz_divisible_2exp_p
  628. __GMP_DECLSPEC int mpz_divisible_2exp_p __GMP_PROTO ((mpz_srcptr, mp_bitcnt_t)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  629. #define mpz_dump __gmpz_dump
  630. __GMP_DECLSPEC void mpz_dump __GMP_PROTO ((mpz_srcptr));
  631. #define mpz_export __gmpz_export
  632. __GMP_DECLSPEC void *mpz_export __GMP_PROTO ((void *, size_t *, int, size_t, int, size_t, mpz_srcptr));
  633. #define mpz_fac_ui __gmpz_fac_ui
  634. __GMP_DECLSPEC void mpz_fac_ui __GMP_PROTO ((mpz_ptr, unsigned long int));
  635. #define mpz_fdiv_q __gmpz_fdiv_q
  636. __GMP_DECLSPEC void mpz_fdiv_q __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  637. #define mpz_fdiv_q_2exp __gmpz_fdiv_q_2exp
  638. __GMP_DECLSPEC void mpz_fdiv_q_2exp __GMP_PROTO ((mpz_ptr, mpz_srcptr, mp_bitcnt_t));
  639. #define mpz_fdiv_q_ui __gmpz_fdiv_q_ui
  640. __GMP_DECLSPEC unsigned long int mpz_fdiv_q_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  641. #define mpz_fdiv_qr __gmpz_fdiv_qr
  642. __GMP_DECLSPEC void mpz_fdiv_qr __GMP_PROTO ((mpz_ptr, mpz_ptr, mpz_srcptr, mpz_srcptr));
  643. #define mpz_fdiv_qr_ui __gmpz_fdiv_qr_ui
  644. __GMP_DECLSPEC unsigned long int mpz_fdiv_qr_ui __GMP_PROTO ((mpz_ptr, mpz_ptr, mpz_srcptr, unsigned long int));
  645. #define mpz_fdiv_r __gmpz_fdiv_r
  646. __GMP_DECLSPEC void mpz_fdiv_r __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  647. #define mpz_fdiv_r_2exp __gmpz_fdiv_r_2exp
  648. __GMP_DECLSPEC void mpz_fdiv_r_2exp __GMP_PROTO ((mpz_ptr, mpz_srcptr, mp_bitcnt_t));
  649. #define mpz_fdiv_r_ui __gmpz_fdiv_r_ui
  650. __GMP_DECLSPEC unsigned long int mpz_fdiv_r_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  651. #define mpz_fdiv_ui __gmpz_fdiv_ui
  652. __GMP_DECLSPEC unsigned long int mpz_fdiv_ui __GMP_PROTO ((mpz_srcptr, unsigned long int)) __GMP_ATTRIBUTE_PURE;
  653. #define mpz_fib_ui __gmpz_fib_ui
  654. __GMP_DECLSPEC void mpz_fib_ui __GMP_PROTO ((mpz_ptr, unsigned long int));
  655. #define mpz_fib2_ui __gmpz_fib2_ui
  656. __GMP_DECLSPEC void mpz_fib2_ui __GMP_PROTO ((mpz_ptr, mpz_ptr, unsigned long int));
  657. #define mpz_fits_sint_p __gmpz_fits_sint_p
  658. __GMP_DECLSPEC int mpz_fits_sint_p __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  659. #define mpz_fits_slong_p __gmpz_fits_slong_p
  660. __GMP_DECLSPEC int mpz_fits_slong_p __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  661. #define mpz_fits_sshort_p __gmpz_fits_sshort_p
  662. __GMP_DECLSPEC int mpz_fits_sshort_p __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  663. #define mpz_fits_uint_p __gmpz_fits_uint_p
  664. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_fits_uint_p)
  665. __GMP_DECLSPEC int mpz_fits_uint_p __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  666. #endif
  667. #define mpz_fits_ulong_p __gmpz_fits_ulong_p
  668. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_fits_ulong_p)
  669. __GMP_DECLSPEC int mpz_fits_ulong_p __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  670. #endif
  671. #define mpz_fits_ushort_p __gmpz_fits_ushort_p
  672. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_fits_ushort_p)
  673. __GMP_DECLSPEC int mpz_fits_ushort_p __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  674. #endif
  675. #define mpz_gcd __gmpz_gcd
  676. __GMP_DECLSPEC void mpz_gcd __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  677. #define mpz_gcd_ui __gmpz_gcd_ui
  678. __GMP_DECLSPEC unsigned long int mpz_gcd_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  679. #define mpz_gcdext __gmpz_gcdext
  680. __GMP_DECLSPEC void mpz_gcdext __GMP_PROTO ((mpz_ptr, mpz_ptr, mpz_ptr, mpz_srcptr, mpz_srcptr));
  681. #define mpz_get_d __gmpz_get_d
  682. __GMP_DECLSPEC double mpz_get_d __GMP_PROTO ((mpz_srcptr)) __GMP_ATTRIBUTE_PURE;
  683. #define mpz_get_d_2exp __gmpz_get_d_2exp
  684. __GMP_DECLSPEC double mpz_get_d_2exp __GMP_PROTO ((signed long int *, mpz_srcptr));
  685. #define mpz_get_si __gmpz_get_si
  686. __GMP_DECLSPEC /* signed */ long int mpz_get_si __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  687. #define mpz_get_str __gmpz_get_str
  688. __GMP_DECLSPEC char *mpz_get_str __GMP_PROTO ((char *, int, mpz_srcptr));
  689. #define mpz_get_ui __gmpz_get_ui
  690. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_get_ui)
  691. __GMP_DECLSPEC unsigned long int mpz_get_ui __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  692. #endif
  693. #define mpz_getlimbn __gmpz_getlimbn
  694. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_getlimbn)
  695. __GMP_DECLSPEC mp_limb_t mpz_getlimbn __GMP_PROTO ((mpz_srcptr, mp_size_t)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  696. #endif
  697. #define mpz_hamdist __gmpz_hamdist
  698. __GMP_DECLSPEC mp_bitcnt_t mpz_hamdist __GMP_PROTO ((mpz_srcptr, mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  699. #define mpz_import __gmpz_import
  700. __GMP_DECLSPEC void mpz_import __GMP_PROTO ((mpz_ptr, size_t, int, size_t, int, size_t, __gmp_const void *));
  701. #define mpz_init __gmpz_init
  702. __GMP_DECLSPEC void mpz_init __GMP_PROTO ((mpz_ptr));
  703. #define mpz_init2 __gmpz_init2
  704. __GMP_DECLSPEC void mpz_init2 __GMP_PROTO ((mpz_ptr, mp_bitcnt_t));
  705. #define mpz_inits __gmpz_inits
  706. __GMP_DECLSPEC void mpz_inits __GMP_PROTO ((mpz_ptr, ...));
  707. #define mpz_init_set __gmpz_init_set
  708. __GMP_DECLSPEC void mpz_init_set __GMP_PROTO ((mpz_ptr, mpz_srcptr));
  709. #define mpz_init_set_d __gmpz_init_set_d
  710. __GMP_DECLSPEC void mpz_init_set_d __GMP_PROTO ((mpz_ptr, double));
  711. #define mpz_init_set_si __gmpz_init_set_si
  712. __GMP_DECLSPEC void mpz_init_set_si __GMP_PROTO ((mpz_ptr, signed long int));
  713. #define mpz_init_set_str __gmpz_init_set_str
  714. __GMP_DECLSPEC int mpz_init_set_str __GMP_PROTO ((mpz_ptr, __gmp_const char *, int));
  715. #define mpz_init_set_ui __gmpz_init_set_ui
  716. __GMP_DECLSPEC void mpz_init_set_ui __GMP_PROTO ((mpz_ptr, unsigned long int));
  717. #define mpz_inp_raw __gmpz_inp_raw
  718. #ifdef _GMP_H_HAVE_FILE
  719. __GMP_DECLSPEC size_t mpz_inp_raw __GMP_PROTO ((mpz_ptr, FILE *));
  720. #endif
  721. #define mpz_inp_str __gmpz_inp_str
  722. #ifdef _GMP_H_HAVE_FILE
  723. __GMP_DECLSPEC size_t mpz_inp_str __GMP_PROTO ((mpz_ptr, FILE *, int));
  724. #endif
  725. #define mpz_invert __gmpz_invert
  726. __GMP_DECLSPEC int mpz_invert __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  727. #define mpz_ior __gmpz_ior
  728. __GMP_DECLSPEC void mpz_ior __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  729. #define mpz_jacobi __gmpz_jacobi
  730. __GMP_DECLSPEC int mpz_jacobi __GMP_PROTO ((mpz_srcptr, mpz_srcptr)) __GMP_ATTRIBUTE_PURE;
  731. #define mpz_kronecker mpz_jacobi  /* alias */
  732. #define mpz_kronecker_si __gmpz_kronecker_si
  733. __GMP_DECLSPEC int mpz_kronecker_si __GMP_PROTO ((mpz_srcptr, long)) __GMP_ATTRIBUTE_PURE;
  734. #define mpz_kronecker_ui __gmpz_kronecker_ui
  735. __GMP_DECLSPEC int mpz_kronecker_ui __GMP_PROTO ((mpz_srcptr, unsigned long)) __GMP_ATTRIBUTE_PURE;
  736. #define mpz_si_kronecker __gmpz_si_kronecker
  737. __GMP_DECLSPEC int mpz_si_kronecker __GMP_PROTO ((long, mpz_srcptr)) __GMP_ATTRIBUTE_PURE;
  738. #define mpz_ui_kronecker __gmpz_ui_kronecker
  739. __GMP_DECLSPEC int mpz_ui_kronecker __GMP_PROTO ((unsigned long, mpz_srcptr)) __GMP_ATTRIBUTE_PURE;
  740. #define mpz_lcm __gmpz_lcm
  741. __GMP_DECLSPEC void mpz_lcm __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  742. #define mpz_lcm_ui __gmpz_lcm_ui
  743. __GMP_DECLSPEC void mpz_lcm_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long));
  744. #define mpz_legendre mpz_jacobi  /* alias */
  745. #define mpz_lucnum_ui __gmpz_lucnum_ui
  746. __GMP_DECLSPEC void mpz_lucnum_ui __GMP_PROTO ((mpz_ptr, unsigned long int));
  747. #define mpz_lucnum2_ui __gmpz_lucnum2_ui
  748. __GMP_DECLSPEC void mpz_lucnum2_ui __GMP_PROTO ((mpz_ptr, mpz_ptr, unsigned long int));
  749. #define mpz_millerrabin __gmpz_millerrabin
  750. __GMP_DECLSPEC int mpz_millerrabin __GMP_PROTO ((mpz_srcptr, int)) __GMP_ATTRIBUTE_PURE;
  751. #define mpz_mod __gmpz_mod
  752. __GMP_DECLSPEC void mpz_mod __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  753. #define mpz_mod_ui mpz_fdiv_r_ui /* same as fdiv_r because divisor unsigned */
  754. #define mpz_mul __gmpz_mul
  755. __GMP_DECLSPEC void mpz_mul __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  756. #define mpz_mul_2exp __gmpz_mul_2exp
  757. __GMP_DECLSPEC void mpz_mul_2exp __GMP_PROTO ((mpz_ptr, mpz_srcptr, mp_bitcnt_t));
  758. #define mpz_mul_si __gmpz_mul_si
  759. __GMP_DECLSPEC void mpz_mul_si __GMP_PROTO ((mpz_ptr, mpz_srcptr, long int));
  760. #define mpz_mul_ui __gmpz_mul_ui
  761. __GMP_DECLSPEC void mpz_mul_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  762. #define mpz_neg __gmpz_neg
  763. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_neg)
  764. __GMP_DECLSPEC void mpz_neg __GMP_PROTO ((mpz_ptr, mpz_srcptr));
  765. #endif
  766. #define mpz_nextprime __gmpz_nextprime
  767. __GMP_DECLSPEC void mpz_nextprime __GMP_PROTO ((mpz_ptr, mpz_srcptr));
  768. #define mpz_out_raw __gmpz_out_raw
  769. #ifdef _GMP_H_HAVE_FILE
  770. __GMP_DECLSPEC size_t mpz_out_raw __GMP_PROTO ((FILE *, mpz_srcptr));
  771. #endif
  772. #define mpz_out_str __gmpz_out_str
  773. #ifdef _GMP_H_HAVE_FILE
  774. __GMP_DECLSPEC size_t mpz_out_str __GMP_PROTO ((FILE *, int, mpz_srcptr));
  775. #endif
  776. #define mpz_perfect_power_p __gmpz_perfect_power_p
  777. __GMP_DECLSPEC int mpz_perfect_power_p __GMP_PROTO ((mpz_srcptr)) __GMP_ATTRIBUTE_PURE;
  778. #define mpz_perfect_square_p __gmpz_perfect_square_p
  779. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_perfect_square_p)
  780. __GMP_DECLSPEC int mpz_perfect_square_p __GMP_PROTO ((mpz_srcptr)) __GMP_ATTRIBUTE_PURE;
  781. #endif
  782. #define mpz_popcount __gmpz_popcount
  783. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_popcount)
  784. __GMP_DECLSPEC mp_bitcnt_t mpz_popcount __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  785. #endif
  786. #define mpz_pow_ui __gmpz_pow_ui
  787. __GMP_DECLSPEC void mpz_pow_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  788. #define mpz_powm __gmpz_powm
  789. __GMP_DECLSPEC void mpz_powm __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr, mpz_srcptr));
  790. #define mpz_powm_sec __gmpz_powm_sec
  791. __GMP_DECLSPEC void mpz_powm_sec __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr, mpz_srcptr));
  792. #define mpz_powm_ui __gmpz_powm_ui
  793. __GMP_DECLSPEC void mpz_powm_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int, mpz_srcptr));
  794. #define mpz_probab_prime_p __gmpz_probab_prime_p
  795. __GMP_DECLSPEC int mpz_probab_prime_p __GMP_PROTO ((mpz_srcptr, int)) __GMP_ATTRIBUTE_PURE;
  796. #define mpz_random __gmpz_random
  797. __GMP_DECLSPEC void mpz_random __GMP_PROTO ((mpz_ptr, mp_size_t));
  798. #define mpz_random2 __gmpz_random2
  799. __GMP_DECLSPEC void mpz_random2 __GMP_PROTO ((mpz_ptr, mp_size_t));
  800. #define mpz_realloc2 __gmpz_realloc2
  801. __GMP_DECLSPEC void mpz_realloc2 __GMP_PROTO ((mpz_ptr, mp_bitcnt_t));
  802. #define mpz_remove __gmpz_remove
  803. __GMP_DECLSPEC unsigned long int mpz_remove __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  804. #define mpz_root __gmpz_root
  805. __GMP_DECLSPEC int mpz_root __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  806. #define mpz_rootrem __gmpz_rootrem
  807. __GMP_DECLSPEC void mpz_rootrem __GMP_PROTO ((mpz_ptr,mpz_ptr, mpz_srcptr, unsigned long int));
  808. #define mpz_rrandomb __gmpz_rrandomb
  809. __GMP_DECLSPEC void mpz_rrandomb __GMP_PROTO ((mpz_ptr, gmp_randstate_t, mp_bitcnt_t));
  810. #define mpz_scan0 __gmpz_scan0
  811. __GMP_DECLSPEC mp_bitcnt_t mpz_scan0 __GMP_PROTO ((mpz_srcptr, mp_bitcnt_t)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  812. #define mpz_scan1 __gmpz_scan1
  813. __GMP_DECLSPEC mp_bitcnt_t mpz_scan1 __GMP_PROTO ((mpz_srcptr, mp_bitcnt_t)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  814. #define mpz_set __gmpz_set
  815. __GMP_DECLSPEC void mpz_set __GMP_PROTO ((mpz_ptr, mpz_srcptr));
  816. #define mpz_set_d __gmpz_set_d
  817. __GMP_DECLSPEC void mpz_set_d __GMP_PROTO ((mpz_ptr, double));
  818. #define mpz_set_f __gmpz_set_f
  819. __GMP_DECLSPEC void mpz_set_f __GMP_PROTO ((mpz_ptr, mpf_srcptr));
  820. #define mpz_set_q __gmpz_set_q
  821. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_set_q)
  822. __GMP_DECLSPEC void mpz_set_q __GMP_PROTO ((mpz_ptr, mpq_srcptr));
  823. #endif
  824. #define mpz_set_si __gmpz_set_si
  825. __GMP_DECLSPEC void mpz_set_si __GMP_PROTO ((mpz_ptr, signed long int));
  826. #define mpz_set_str __gmpz_set_str
  827. __GMP_DECLSPEC int mpz_set_str __GMP_PROTO ((mpz_ptr, __gmp_const char *, int));
  828. #define mpz_set_ui __gmpz_set_ui
  829. __GMP_DECLSPEC void mpz_set_ui __GMP_PROTO ((mpz_ptr, unsigned long int));
  830. #define mpz_setbit __gmpz_setbit
  831. __GMP_DECLSPEC void mpz_setbit __GMP_PROTO ((mpz_ptr, mp_bitcnt_t));
  832. #define mpz_size __gmpz_size
  833. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpz_size)
  834. __GMP_DECLSPEC size_t mpz_size __GMP_PROTO ((mpz_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  835. #endif
  836. #define mpz_sizeinbase __gmpz_sizeinbase
  837. __GMP_DECLSPEC size_t mpz_sizeinbase __GMP_PROTO ((mpz_srcptr, int)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  838. #define mpz_sqrt __gmpz_sqrt
  839. __GMP_DECLSPEC void mpz_sqrt __GMP_PROTO ((mpz_ptr, mpz_srcptr));
  840. #define mpz_sqrtrem __gmpz_sqrtrem
  841. __GMP_DECLSPEC void mpz_sqrtrem __GMP_PROTO ((mpz_ptr, mpz_ptr, mpz_srcptr));
  842. #define mpz_sub __gmpz_sub
  843. __GMP_DECLSPEC void mpz_sub __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  844. #define mpz_sub_ui __gmpz_sub_ui
  845. __GMP_DECLSPEC void mpz_sub_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  846. #define mpz_ui_sub __gmpz_ui_sub
  847. __GMP_DECLSPEC void mpz_ui_sub __GMP_PROTO ((mpz_ptr, unsigned long int, mpz_srcptr));
  848. #define mpz_submul __gmpz_submul
  849. __GMP_DECLSPEC void mpz_submul __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  850. #define mpz_submul_ui __gmpz_submul_ui
  851. __GMP_DECLSPEC void mpz_submul_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  852. #define mpz_swap __gmpz_swap
  853. __GMP_DECLSPEC void mpz_swap __GMP_PROTO ((mpz_ptr, mpz_ptr)) __GMP_NOTHROW;
  854. #define mpz_tdiv_ui __gmpz_tdiv_ui
  855. __GMP_DECLSPEC unsigned long int mpz_tdiv_ui __GMP_PROTO ((mpz_srcptr, unsigned long int)) __GMP_ATTRIBUTE_PURE;
  856. #define mpz_tdiv_q __gmpz_tdiv_q
  857. __GMP_DECLSPEC void mpz_tdiv_q __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  858. #define mpz_tdiv_q_2exp __gmpz_tdiv_q_2exp
  859. __GMP_DECLSPEC void mpz_tdiv_q_2exp __GMP_PROTO ((mpz_ptr, mpz_srcptr, mp_bitcnt_t));
  860. #define mpz_tdiv_q_ui __gmpz_tdiv_q_ui
  861. __GMP_DECLSPEC unsigned long int mpz_tdiv_q_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  862. #define mpz_tdiv_qr __gmpz_tdiv_qr
  863. __GMP_DECLSPEC void mpz_tdiv_qr __GMP_PROTO ((mpz_ptr, mpz_ptr, mpz_srcptr, mpz_srcptr));
  864. #define mpz_tdiv_qr_ui __gmpz_tdiv_qr_ui
  865. __GMP_DECLSPEC unsigned long int mpz_tdiv_qr_ui __GMP_PROTO ((mpz_ptr, mpz_ptr, mpz_srcptr, unsigned long int));
  866. #define mpz_tdiv_r __gmpz_tdiv_r
  867. __GMP_DECLSPEC void mpz_tdiv_r __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  868. #define mpz_tdiv_r_2exp __gmpz_tdiv_r_2exp
  869. __GMP_DECLSPEC void mpz_tdiv_r_2exp __GMP_PROTO ((mpz_ptr, mpz_srcptr, mp_bitcnt_t));
  870. #define mpz_tdiv_r_ui __gmpz_tdiv_r_ui
  871. __GMP_DECLSPEC unsigned long int mpz_tdiv_r_ui __GMP_PROTO ((mpz_ptr, mpz_srcptr, unsigned long int));
  872. #define mpz_tstbit __gmpz_tstbit
  873. __GMP_DECLSPEC int mpz_tstbit __GMP_PROTO ((mpz_srcptr, mp_bitcnt_t)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  874. #define mpz_ui_pow_ui __gmpz_ui_pow_ui
  875. __GMP_DECLSPEC void mpz_ui_pow_ui __GMP_PROTO ((mpz_ptr, unsigned long int, unsigned long int));
  876. #define mpz_urandomb __gmpz_urandomb
  877. __GMP_DECLSPEC void mpz_urandomb __GMP_PROTO ((mpz_ptr, gmp_randstate_t, mp_bitcnt_t));
  878. #define mpz_urandomm __gmpz_urandomm
  879. __GMP_DECLSPEC void mpz_urandomm __GMP_PROTO ((mpz_ptr, gmp_randstate_t, mpz_srcptr));
  880. #define mpz_xor __gmpz_xor
  881. #define mpz_eor __gmpz_xor
  882. __GMP_DECLSPEC void mpz_xor __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr));
  883. /**************** Rational (i.e. Q) routines.  ****************/
  884. #define mpq_abs __gmpq_abs
  885. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpq_abs)
  886. __GMP_DECLSPEC void mpq_abs __GMP_PROTO ((mpq_ptr, mpq_srcptr));
  887. #endif
  888. #define mpq_add __gmpq_add
  889. __GMP_DECLSPEC void mpq_add __GMP_PROTO ((mpq_ptr, mpq_srcptr, mpq_srcptr));
  890. #define mpq_canonicalize __gmpq_canonicalize
  891. __GMP_DECLSPEC void mpq_canonicalize __GMP_PROTO ((mpq_ptr));
  892. #define mpq_clear __gmpq_clear
  893. __GMP_DECLSPEC void mpq_clear __GMP_PROTO ((mpq_ptr));
  894. #define mpq_clears __gmpq_clears
  895. __GMP_DECLSPEC void mpq_clears __GMP_PROTO ((mpq_ptr, ...));
  896. #define mpq_cmp __gmpq_cmp
  897. __GMP_DECLSPEC int mpq_cmp __GMP_PROTO ((mpq_srcptr, mpq_srcptr)) __GMP_ATTRIBUTE_PURE;
  898. #define _mpq_cmp_si __gmpq_cmp_si
  899. __GMP_DECLSPEC int _mpq_cmp_si __GMP_PROTO ((mpq_srcptr, long, unsigned long)) __GMP_ATTRIBUTE_PURE;
  900. #define _mpq_cmp_ui __gmpq_cmp_ui
  901. __GMP_DECLSPEC int _mpq_cmp_ui __GMP_PROTO ((mpq_srcptr, unsigned long int, unsigned long int)) __GMP_ATTRIBUTE_PURE;
  902. #define mpq_div __gmpq_div
  903. __GMP_DECLSPEC void mpq_div __GMP_PROTO ((mpq_ptr, mpq_srcptr, mpq_srcptr));
  904. #define mpq_div_2exp __gmpq_div_2exp
  905. __GMP_DECLSPEC void mpq_div_2exp __GMP_PROTO ((mpq_ptr, mpq_srcptr, mp_bitcnt_t));
  906. #define mpq_equal __gmpq_equal
  907. __GMP_DECLSPEC int mpq_equal __GMP_PROTO ((mpq_srcptr, mpq_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  908. #define mpq_get_num __gmpq_get_num
  909. __GMP_DECLSPEC void mpq_get_num __GMP_PROTO ((mpz_ptr, mpq_srcptr));
  910. #define mpq_get_den __gmpq_get_den
  911. __GMP_DECLSPEC void mpq_get_den __GMP_PROTO ((mpz_ptr, mpq_srcptr));
  912. #define mpq_get_d __gmpq_get_d
  913. __GMP_DECLSPEC double mpq_get_d __GMP_PROTO ((mpq_srcptr)) __GMP_ATTRIBUTE_PURE;
  914. #define mpq_get_str __gmpq_get_str
  915. __GMP_DECLSPEC char *mpq_get_str __GMP_PROTO ((char *, int, mpq_srcptr));
  916. #define mpq_init __gmpq_init
  917. __GMP_DECLSPEC void mpq_init __GMP_PROTO ((mpq_ptr));
  918. #define mpq_inits __gmpq_inits
  919. __GMP_DECLSPEC void mpq_inits __GMP_PROTO ((mpq_ptr, ...));
  920. #define mpq_inp_str __gmpq_inp_str
  921. #ifdef _GMP_H_HAVE_FILE
  922. __GMP_DECLSPEC size_t mpq_inp_str __GMP_PROTO ((mpq_ptr, FILE *, int));
  923. #endif
  924. #define mpq_inv __gmpq_inv
  925. __GMP_DECLSPEC void mpq_inv __GMP_PROTO ((mpq_ptr, mpq_srcptr));
  926. #define mpq_mul __gmpq_mul
  927. __GMP_DECLSPEC void mpq_mul __GMP_PROTO ((mpq_ptr, mpq_srcptr, mpq_srcptr));
  928. #define mpq_mul_2exp __gmpq_mul_2exp
  929. __GMP_DECLSPEC void mpq_mul_2exp __GMP_PROTO ((mpq_ptr, mpq_srcptr, mp_bitcnt_t));
  930. #define mpq_neg __gmpq_neg
  931. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpq_neg)
  932. __GMP_DECLSPEC void mpq_neg __GMP_PROTO ((mpq_ptr, mpq_srcptr));
  933. #endif
  934. #define mpq_out_str __gmpq_out_str
  935. #ifdef _GMP_H_HAVE_FILE
  936. __GMP_DECLSPEC size_t mpq_out_str __GMP_PROTO ((FILE *, int, mpq_srcptr));
  937. #endif
  938. #define mpq_set __gmpq_set
  939. __GMP_DECLSPEC void mpq_set __GMP_PROTO ((mpq_ptr, mpq_srcptr));
  940. #define mpq_set_d __gmpq_set_d
  941. __GMP_DECLSPEC void mpq_set_d __GMP_PROTO ((mpq_ptr, double));
  942. #define mpq_set_den __gmpq_set_den
  943. __GMP_DECLSPEC void mpq_set_den __GMP_PROTO ((mpq_ptr, mpz_srcptr));
  944. #define mpq_set_f __gmpq_set_f
  945. __GMP_DECLSPEC void mpq_set_f __GMP_PROTO ((mpq_ptr, mpf_srcptr));
  946. #define mpq_set_num __gmpq_set_num
  947. __GMP_DECLSPEC void mpq_set_num __GMP_PROTO ((mpq_ptr, mpz_srcptr));
  948. #define mpq_set_si __gmpq_set_si
  949. __GMP_DECLSPEC void mpq_set_si __GMP_PROTO ((mpq_ptr, signed long int, unsigned long int));
  950. #define mpq_set_str __gmpq_set_str
  951. __GMP_DECLSPEC int mpq_set_str __GMP_PROTO ((mpq_ptr, __gmp_const char *, int));
  952. #define mpq_set_ui __gmpq_set_ui
  953. __GMP_DECLSPEC void mpq_set_ui __GMP_PROTO ((mpq_ptr, unsigned long int, unsigned long int));
  954. #define mpq_set_z __gmpq_set_z
  955. __GMP_DECLSPEC void mpq_set_z __GMP_PROTO ((mpq_ptr, mpz_srcptr));
  956. #define mpq_sub __gmpq_sub
  957. __GMP_DECLSPEC void mpq_sub __GMP_PROTO ((mpq_ptr, mpq_srcptr, mpq_srcptr));
  958. #define mpq_swap __gmpq_swap
  959. __GMP_DECLSPEC void mpq_swap __GMP_PROTO ((mpq_ptr, mpq_ptr)) __GMP_NOTHROW;
  960. /**************** Float (i.e. F) routines.  ****************/
  961. #define mpf_abs __gmpf_abs
  962. __GMP_DECLSPEC void mpf_abs __GMP_PROTO ((mpf_ptr, mpf_srcptr));
  963. #define mpf_add __gmpf_add
  964. __GMP_DECLSPEC void mpf_add __GMP_PROTO ((mpf_ptr, mpf_srcptr, mpf_srcptr));
  965. #define mpf_add_ui __gmpf_add_ui
  966. __GMP_DECLSPEC void mpf_add_ui __GMP_PROTO ((mpf_ptr, mpf_srcptr, unsigned long int));
  967. #define mpf_ceil __gmpf_ceil
  968. __GMP_DECLSPEC void mpf_ceil __GMP_PROTO ((mpf_ptr, mpf_srcptr));
  969. #define mpf_clear __gmpf_clear
  970. __GMP_DECLSPEC void mpf_clear __GMP_PROTO ((mpf_ptr));
  971. #define mpf_clears __gmpf_clears
  972. __GMP_DECLSPEC void mpf_clears __GMP_PROTO ((mpf_ptr, ...));
  973. #define mpf_cmp __gmpf_cmp
  974. __GMP_DECLSPEC int mpf_cmp __GMP_PROTO ((mpf_srcptr, mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  975. #define mpf_cmp_d __gmpf_cmp_d
  976. __GMP_DECLSPEC int mpf_cmp_d __GMP_PROTO ((mpf_srcptr, double)) __GMP_ATTRIBUTE_PURE;
  977. #define mpf_cmp_si __gmpf_cmp_si
  978. __GMP_DECLSPEC int mpf_cmp_si __GMP_PROTO ((mpf_srcptr, signed long int)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  979. #define mpf_cmp_ui __gmpf_cmp_ui
  980. __GMP_DECLSPEC int mpf_cmp_ui __GMP_PROTO ((mpf_srcptr, unsigned long int)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  981. #define mpf_div __gmpf_div
  982. __GMP_DECLSPEC void mpf_div __GMP_PROTO ((mpf_ptr, mpf_srcptr, mpf_srcptr));
  983. #define mpf_div_2exp __gmpf_div_2exp
  984. __GMP_DECLSPEC void mpf_div_2exp __GMP_PROTO ((mpf_ptr, mpf_srcptr, mp_bitcnt_t));
  985. #define mpf_div_ui __gmpf_div_ui
  986. __GMP_DECLSPEC void mpf_div_ui __GMP_PROTO ((mpf_ptr, mpf_srcptr, unsigned long int));
  987. #define mpf_dump __gmpf_dump
  988. __GMP_DECLSPEC void mpf_dump __GMP_PROTO ((mpf_srcptr));
  989. #define mpf_eq __gmpf_eq
  990. __GMP_DECLSPEC int mpf_eq __GMP_PROTO ((mpf_srcptr, mpf_srcptr, unsigned long int)) __GMP_ATTRIBUTE_PURE;
  991. #define mpf_fits_sint_p __gmpf_fits_sint_p
  992. __GMP_DECLSPEC int mpf_fits_sint_p __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  993. #define mpf_fits_slong_p __gmpf_fits_slong_p
  994. __GMP_DECLSPEC int mpf_fits_slong_p __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  995. #define mpf_fits_sshort_p __gmpf_fits_sshort_p
  996. __GMP_DECLSPEC int mpf_fits_sshort_p __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  997. #define mpf_fits_uint_p __gmpf_fits_uint_p
  998. __GMP_DECLSPEC int mpf_fits_uint_p __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  999. #define mpf_fits_ulong_p __gmpf_fits_ulong_p
  1000. __GMP_DECLSPEC int mpf_fits_ulong_p __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1001. #define mpf_fits_ushort_p __gmpf_fits_ushort_p
  1002. __GMP_DECLSPEC int mpf_fits_ushort_p __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1003. #define mpf_floor __gmpf_floor
  1004. __GMP_DECLSPEC void mpf_floor __GMP_PROTO ((mpf_ptr, mpf_srcptr));
  1005. #define mpf_get_d __gmpf_get_d
  1006. __GMP_DECLSPEC double mpf_get_d __GMP_PROTO ((mpf_srcptr)) __GMP_ATTRIBUTE_PURE;
  1007. #define mpf_get_d_2exp __gmpf_get_d_2exp
  1008. __GMP_DECLSPEC double mpf_get_d_2exp __GMP_PROTO ((signed long int *, mpf_srcptr));
  1009. #define mpf_get_default_prec __gmpf_get_default_prec
  1010. __GMP_DECLSPEC mp_bitcnt_t mpf_get_default_prec __GMP_PROTO ((void)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1011. #define mpf_get_prec __gmpf_get_prec
  1012. __GMP_DECLSPEC mp_bitcnt_t mpf_get_prec __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1013. #define mpf_get_si __gmpf_get_si
  1014. __GMP_DECLSPEC long mpf_get_si __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1015. #define mpf_get_str __gmpf_get_str
  1016. __GMP_DECLSPEC char *mpf_get_str __GMP_PROTO ((char *, mp_exp_t *, int, size_t, mpf_srcptr));
  1017. #define mpf_get_ui __gmpf_get_ui
  1018. __GMP_DECLSPEC unsigned long mpf_get_ui __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1019. #define mpf_init __gmpf_init
  1020. __GMP_DECLSPEC void mpf_init __GMP_PROTO ((mpf_ptr));
  1021. #define mpf_init2 __gmpf_init2
  1022. __GMP_DECLSPEC void mpf_init2 __GMP_PROTO ((mpf_ptr, mp_bitcnt_t));
  1023. #define mpf_inits __gmpf_inits
  1024. __GMP_DECLSPEC void mpf_inits __GMP_PROTO ((mpf_ptr, ...));
  1025. #define mpf_init_set __gmpf_init_set
  1026. __GMP_DECLSPEC void mpf_init_set __GMP_PROTO ((mpf_ptr, mpf_srcptr));
  1027. #define mpf_init_set_d __gmpf_init_set_d
  1028. __GMP_DECLSPEC void mpf_init_set_d __GMP_PROTO ((mpf_ptr, double));
  1029. #define mpf_init_set_si __gmpf_init_set_si
  1030. __GMP_DECLSPEC void mpf_init_set_si __GMP_PROTO ((mpf_ptr, signed long int));
  1031. #define mpf_init_set_str __gmpf_init_set_str
  1032. __GMP_DECLSPEC int mpf_init_set_str __GMP_PROTO ((mpf_ptr, __gmp_const char *, int));
  1033. #define mpf_init_set_ui __gmpf_init_set_ui
  1034. __GMP_DECLSPEC void mpf_init_set_ui __GMP_PROTO ((mpf_ptr, unsigned long int));
  1035. #define mpf_inp_str __gmpf_inp_str
  1036. #ifdef _GMP_H_HAVE_FILE
  1037. __GMP_DECLSPEC size_t mpf_inp_str __GMP_PROTO ((mpf_ptr, FILE *, int));
  1038. #endif
  1039. #define mpf_integer_p __gmpf_integer_p
  1040. __GMP_DECLSPEC int mpf_integer_p __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1041. #define mpf_mul __gmpf_mul
  1042. __GMP_DECLSPEC void mpf_mul __GMP_PROTO ((mpf_ptr, mpf_srcptr, mpf_srcptr));
  1043. #define mpf_mul_2exp __gmpf_mul_2exp
  1044. __GMP_DECLSPEC void mpf_mul_2exp __GMP_PROTO ((mpf_ptr, mpf_srcptr, mp_bitcnt_t));
  1045. #define mpf_mul_ui __gmpf_mul_ui
  1046. __GMP_DECLSPEC void mpf_mul_ui __GMP_PROTO ((mpf_ptr, mpf_srcptr, unsigned long int));
  1047. #define mpf_neg __gmpf_neg
  1048. __GMP_DECLSPEC void mpf_neg __GMP_PROTO ((mpf_ptr, mpf_srcptr));
  1049. #define mpf_out_str __gmpf_out_str
  1050. #ifdef _GMP_H_HAVE_FILE
  1051. __GMP_DECLSPEC size_t mpf_out_str __GMP_PROTO ((FILE *, int, size_t, mpf_srcptr));
  1052. #endif
  1053. #define mpf_pow_ui __gmpf_pow_ui
  1054. __GMP_DECLSPEC void mpf_pow_ui __GMP_PROTO ((mpf_ptr, mpf_srcptr, unsigned long int));
  1055. #define mpf_random2 __gmpf_random2
  1056. __GMP_DECLSPEC void mpf_random2 __GMP_PROTO ((mpf_ptr, mp_size_t, mp_exp_t));
  1057. #define mpf_reldiff __gmpf_reldiff
  1058. __GMP_DECLSPEC void mpf_reldiff __GMP_PROTO ((mpf_ptr, mpf_srcptr, mpf_srcptr));
  1059. #define mpf_set __gmpf_set
  1060. __GMP_DECLSPEC void mpf_set __GMP_PROTO ((mpf_ptr, mpf_srcptr));
  1061. #define mpf_set_d __gmpf_set_d
  1062. __GMP_DECLSPEC void mpf_set_d __GMP_PROTO ((mpf_ptr, double));
  1063. #define mpf_set_default_prec __gmpf_set_default_prec
  1064. __GMP_DECLSPEC void mpf_set_default_prec __GMP_PROTO ((mp_bitcnt_t)) __GMP_NOTHROW;
  1065. #define mpf_set_prec __gmpf_set_prec
  1066. __GMP_DECLSPEC void mpf_set_prec __GMP_PROTO ((mpf_ptr, mp_bitcnt_t));
  1067. #define mpf_set_prec_raw __gmpf_set_prec_raw
  1068. __GMP_DECLSPEC void mpf_set_prec_raw __GMP_PROTO ((mpf_ptr, mp_bitcnt_t)) __GMP_NOTHROW;
  1069. #define mpf_set_q __gmpf_set_q
  1070. __GMP_DECLSPEC void mpf_set_q __GMP_PROTO ((mpf_ptr, mpq_srcptr));
  1071. #define mpf_set_si __gmpf_set_si
  1072. __GMP_DECLSPEC void mpf_set_si __GMP_PROTO ((mpf_ptr, signed long int));
  1073. #define mpf_set_str __gmpf_set_str
  1074. __GMP_DECLSPEC int mpf_set_str __GMP_PROTO ((mpf_ptr, __gmp_const char *, int));
  1075. #define mpf_set_ui __gmpf_set_ui
  1076. __GMP_DECLSPEC void mpf_set_ui __GMP_PROTO ((mpf_ptr, unsigned long int));
  1077. #define mpf_set_z __gmpf_set_z
  1078. __GMP_DECLSPEC void mpf_set_z __GMP_PROTO ((mpf_ptr, mpz_srcptr));
  1079. #define mpf_size __gmpf_size
  1080. __GMP_DECLSPEC size_t mpf_size __GMP_PROTO ((mpf_srcptr)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1081. #define mpf_sqrt __gmpf_sqrt
  1082. __GMP_DECLSPEC void mpf_sqrt __GMP_PROTO ((mpf_ptr, mpf_srcptr));
  1083. #define mpf_sqrt_ui __gmpf_sqrt_ui
  1084. __GMP_DECLSPEC void mpf_sqrt_ui __GMP_PROTO ((mpf_ptr, unsigned long int));
  1085. #define mpf_sub __gmpf_sub
  1086. __GMP_DECLSPEC void mpf_sub __GMP_PROTO ((mpf_ptr, mpf_srcptr, mpf_srcptr));
  1087. #define mpf_sub_ui __gmpf_sub_ui
  1088. __GMP_DECLSPEC void mpf_sub_ui __GMP_PROTO ((mpf_ptr, mpf_srcptr, unsigned long int));
  1089. #define mpf_swap __gmpf_swap
  1090. __GMP_DECLSPEC void mpf_swap __GMP_PROTO ((mpf_ptr, mpf_ptr)) __GMP_NOTHROW;
  1091. #define mpf_trunc __gmpf_trunc
  1092. __GMP_DECLSPEC void mpf_trunc __GMP_PROTO ((mpf_ptr, mpf_srcptr));
  1093. #define mpf_ui_div __gmpf_ui_div
  1094. __GMP_DECLSPEC void mpf_ui_div __GMP_PROTO ((mpf_ptr, unsigned long int, mpf_srcptr));
  1095. #define mpf_ui_sub __gmpf_ui_sub
  1096. __GMP_DECLSPEC void mpf_ui_sub __GMP_PROTO ((mpf_ptr, unsigned long int, mpf_srcptr));
  1097. #define mpf_urandomb __gmpf_urandomb
  1098. __GMP_DECLSPEC void mpf_urandomb __GMP_PROTO ((mpf_t, gmp_randstate_t, mp_bitcnt_t));
  1099. /************ Low level positive-integer (i.e. N) routines.  ************/
  1100. /* This is ugly, but we need to make user calls reach the prefixed function. */
  1101. #define mpn_add __MPN(add)
  1102. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpn_add)
  1103. __GMP_DECLSPEC mp_limb_t mpn_add __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_srcptr,mp_size_t));
  1104. #endif
  1105. #define mpn_add_1 __MPN(add_1)
  1106. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpn_add_1)
  1107. __GMP_DECLSPEC mp_limb_t mpn_add_1 __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_limb_t)) __GMP_NOTHROW;
  1108. #endif
  1109. #define mpn_add_n __MPN(add_n)
  1110. __GMP_DECLSPEC mp_limb_t mpn_add_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1111. #define mpn_addmul_1 __MPN(addmul_1)
  1112. __GMP_DECLSPEC mp_limb_t mpn_addmul_1 __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_limb_t));
  1113. #define mpn_cmp __MPN(cmp)
  1114. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpn_cmp)
  1115. __GMP_DECLSPEC int mpn_cmp __GMP_PROTO ((mp_srcptr, mp_srcptr, mp_size_t)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1116. #endif
  1117. #define mpn_divexact_by3(dst,src,size) 
  1118.   mpn_divexact_by3c (dst, src, size, __GMP_CAST (mp_limb_t, 0))
  1119. #define mpn_divexact_by3c __MPN(divexact_by3c)
  1120. __GMP_DECLSPEC mp_limb_t mpn_divexact_by3c __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_limb_t));
  1121. #define mpn_divmod_1(qp,np,nsize,dlimb) 
  1122.   mpn_divrem_1 (qp, __GMP_CAST (mp_size_t, 0), np, nsize, dlimb)
  1123. #define mpn_divrem __MPN(divrem)
  1124. __GMP_DECLSPEC mp_limb_t mpn_divrem __GMP_PROTO ((mp_ptr, mp_size_t, mp_ptr, mp_size_t, mp_srcptr, mp_size_t));
  1125. #define mpn_divrem_1 __MPN(divrem_1)
  1126. __GMP_DECLSPEC mp_limb_t mpn_divrem_1 __GMP_PROTO ((mp_ptr, mp_size_t, mp_srcptr, mp_size_t, mp_limb_t));
  1127. #define mpn_divrem_2 __MPN(divrem_2)
  1128. __GMP_DECLSPEC mp_limb_t mpn_divrem_2 __GMP_PROTO ((mp_ptr, mp_size_t, mp_ptr, mp_size_t, mp_srcptr));
  1129. #define mpn_gcd __MPN(gcd)
  1130. __GMP_DECLSPEC mp_size_t mpn_gcd __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t, mp_ptr, mp_size_t));
  1131. #define mpn_gcd_1 __MPN(gcd_1)
  1132. __GMP_DECLSPEC mp_limb_t mpn_gcd_1 __GMP_PROTO ((mp_srcptr, mp_size_t, mp_limb_t)) __GMP_ATTRIBUTE_PURE;
  1133. #define mpn_gcdext_1 __MPN(gcdext_1)
  1134. __GMP_DECLSPEC mp_limb_t mpn_gcdext_1 __GMP_PROTO ((mp_limb_signed_t *, mp_limb_signed_t *, mp_limb_t, mp_limb_t));
  1135. #define mpn_gcdext __MPN(gcdext)
  1136. __GMP_DECLSPEC mp_size_t mpn_gcdext __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t *, mp_ptr, mp_size_t, mp_ptr, mp_size_t));
  1137. #define mpn_get_str __MPN(get_str)
  1138. __GMP_DECLSPEC size_t mpn_get_str __GMP_PROTO ((unsigned char *, int, mp_ptr, mp_size_t));
  1139. #define mpn_hamdist __MPN(hamdist)
  1140. __GMP_DECLSPEC mp_bitcnt_t mpn_hamdist __GMP_PROTO ((mp_srcptr, mp_srcptr, mp_size_t)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1141. #define mpn_lshift __MPN(lshift)
  1142. __GMP_DECLSPEC mp_limb_t mpn_lshift __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, unsigned int));
  1143. #define mpn_mod_1 __MPN(mod_1)
  1144. __GMP_DECLSPEC mp_limb_t mpn_mod_1 __GMP_PROTO ((mp_srcptr, mp_size_t, mp_limb_t)) __GMP_ATTRIBUTE_PURE;
  1145. #define mpn_mul __MPN(mul)
  1146. __GMP_DECLSPEC mp_limb_t mpn_mul __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_srcptr, mp_size_t));
  1147. #define mpn_mul_1 __MPN(mul_1)
  1148. __GMP_DECLSPEC mp_limb_t mpn_mul_1 __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_limb_t));
  1149. #define mpn_mul_n __MPN(mul_n)
  1150. __GMP_DECLSPEC void mpn_mul_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1151. #define mpn_sqr __MPN(sqr)
  1152. __GMP_DECLSPEC void mpn_sqr __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t));
  1153. #define mpn_neg __MPN(neg)
  1154. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpn_neg)
  1155. __GMP_DECLSPEC mp_limb_t mpn_neg __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t));
  1156. #endif
  1157. #define mpn_com __MPN(com)
  1158. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpn_com)
  1159. __GMP_DECLSPEC void mpn_com __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t));
  1160. #endif
  1161. #define mpn_perfect_square_p __MPN(perfect_square_p)
  1162. __GMP_DECLSPEC int mpn_perfect_square_p __GMP_PROTO ((mp_srcptr, mp_size_t)) __GMP_ATTRIBUTE_PURE;
  1163. #define mpn_perfect_power_p __MPN(perfect_power_p)
  1164. __GMP_DECLSPEC int mpn_perfect_power_p __GMP_PROTO ((mp_srcptr, mp_size_t)) __GMP_ATTRIBUTE_PURE;
  1165. #define mpn_popcount __MPN(popcount)
  1166. __GMP_DECLSPEC mp_bitcnt_t mpn_popcount __GMP_PROTO ((mp_srcptr, mp_size_t)) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
  1167. #define mpn_pow_1 __MPN(pow_1)
  1168. __GMP_DECLSPEC mp_size_t mpn_pow_1 __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_limb_t, mp_ptr));
  1169. /* undocumented now, but retained here for upward compatibility */
  1170. #define mpn_preinv_mod_1 __MPN(preinv_mod_1)
  1171. __GMP_DECLSPEC mp_limb_t mpn_preinv_mod_1 __GMP_PROTO ((mp_srcptr, mp_size_t, mp_limb_t, mp_limb_t)) __GMP_ATTRIBUTE_PURE;
  1172. #define mpn_random __MPN(random)
  1173. __GMP_DECLSPEC void mpn_random __GMP_PROTO ((mp_ptr, mp_size_t));
  1174. #define mpn_random2 __MPN(random2)
  1175. __GMP_DECLSPEC void mpn_random2 __GMP_PROTO ((mp_ptr, mp_size_t));
  1176. #define mpn_rshift __MPN(rshift)
  1177. __GMP_DECLSPEC mp_limb_t mpn_rshift __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, unsigned int));
  1178. #define mpn_scan0 __MPN(scan0)
  1179. __GMP_DECLSPEC mp_bitcnt_t mpn_scan0 __GMP_PROTO ((mp_srcptr, mp_bitcnt_t)) __GMP_ATTRIBUTE_PURE;
  1180. #define mpn_scan1 __MPN(scan1)
  1181. __GMP_DECLSPEC mp_bitcnt_t mpn_scan1 __GMP_PROTO ((mp_srcptr, mp_bitcnt_t)) __GMP_ATTRIBUTE_PURE;
  1182. #define mpn_set_str __MPN(set_str)
  1183. __GMP_DECLSPEC mp_size_t mpn_set_str __GMP_PROTO ((mp_ptr, __gmp_const unsigned char *, size_t, int));
  1184. #define mpn_sqrtrem __MPN(sqrtrem)
  1185. __GMP_DECLSPEC mp_size_t mpn_sqrtrem __GMP_PROTO ((mp_ptr, mp_ptr, mp_srcptr, mp_size_t));
  1186. #define mpn_sub __MPN(sub)
  1187. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpn_sub)
  1188. __GMP_DECLSPEC mp_limb_t mpn_sub __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_srcptr,mp_size_t));
  1189. #endif
  1190. #define mpn_sub_1 __MPN(sub_1)
  1191. #if __GMP_INLINE_PROTOTYPES || defined (__GMP_FORCE_mpn_sub_1)
  1192. __GMP_DECLSPEC mp_limb_t mpn_sub_1 __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_limb_t)) __GMP_NOTHROW;
  1193. #endif
  1194. #define mpn_sub_n __MPN(sub_n)
  1195. __GMP_DECLSPEC mp_limb_t mpn_sub_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1196. #define mpn_submul_1 __MPN(submul_1)
  1197. __GMP_DECLSPEC mp_limb_t mpn_submul_1 __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_limb_t));
  1198. #define mpn_tdiv_qr __MPN(tdiv_qr)
  1199. __GMP_DECLSPEC void mpn_tdiv_qr __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t, mp_srcptr, mp_size_t, mp_srcptr, mp_size_t));
  1200. #define mpn_and_n __MPN(and_n)
  1201. __GMP_DECLSPEC void mpn_and_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1202. #define mpn_andn_n __MPN(andn_n)
  1203. __GMP_DECLSPEC void mpn_andn_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1204. #define mpn_nand_n __MPN(nand_n)
  1205. __GMP_DECLSPEC void mpn_nand_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1206. #define mpn_ior_n __MPN(ior_n)
  1207. __GMP_DECLSPEC void mpn_ior_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1208. #define mpn_iorn_n __MPN(iorn_n)
  1209. __GMP_DECLSPEC void mpn_iorn_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1210. #define mpn_nior_n __MPN(nior_n)
  1211. __GMP_DECLSPEC void mpn_nior_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1212. #define mpn_xor_n __MPN(xor_n)
  1213. __GMP_DECLSPEC void mpn_xor_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1214. #define mpn_xnor_n __MPN(xnor_n)
  1215. __GMP_DECLSPEC void mpn_xnor_n __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  1216. #define mpn_copyi __MPN(copyi)
  1217. __GMP_DECLSPEC void mpn_copyi __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t));
  1218. #define mpn_copyd __MPN(copyd)
  1219. __GMP_DECLSPEC void mpn_copyd __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t));
  1220. #define mpn_zero __MPN(zero)
  1221. __GMP_DECLSPEC void mpn_zero __GMP_PROTO ((mp_ptr, mp_size_t));
  1222. /**************** mpz inlines ****************/
  1223. /* The following are provided as inlines where possible, but always exist as
  1224.    library functions too, for binary compatibility.
  1225.    Within gmp itself this inlining generally isn't relied on, since it
  1226.    doesn't get done for all compilers, whereas if something is worth
  1227.    inlining then it's worth arranging always.
  1228.    There are two styles of inlining here.  When the same bit of code is
  1229.    wanted for the inline as for the library version, then __GMP_FORCE_foo
  1230.    arranges for that code to be emitted and the __GMP_EXTERN_INLINE
  1231.    directive suppressed, eg. mpz_fits_uint_p.  When a different bit of code
  1232.    is wanted for the inline than for the library version, then
  1233.    __GMP_FORCE_foo arranges the inline to be suppressed, eg. mpz_abs.  */
  1234. #if defined (__GMP_EXTERN_INLINE) && ! defined (__GMP_FORCE_mpz_abs)
  1235. __GMP_EXTERN_INLINE void
  1236. mpz_abs (mpz_ptr __gmp_w, mpz_srcptr __gmp_u)
  1237. {
  1238.   if (__gmp_w != __gmp_u)
  1239.     mpz_set (__gmp_w, __gmp_u);
  1240.   __gmp_w->_mp_size = __GMP_ABS (__gmp_w->_mp_size);
  1241. }
  1242. #endif
  1243. #if GMP_NAIL_BITS == 0
  1244. #define __GMPZ_FITS_UTYPE_P(z,maxval)
  1245.   mp_size_t  __gmp_n = z->_mp_size;
  1246.   mp_ptr  __gmp_p = z->_mp_d;
  1247.   return (__gmp_n == 0 || (__gmp_n == 1 && __gmp_p[0] <= maxval));
  1248. #else
  1249. #define __GMPZ_FITS_UTYPE_P(z,maxval)
  1250.   mp_size_t  __gmp_n = z->_mp_size;
  1251.   mp_ptr  __gmp_p = z->_mp_d;
  1252.   return (__gmp_n == 0 || (__gmp_n == 1 && __gmp_p[0] <= maxval)
  1253.   || (__gmp_n == 2 && __gmp_p[1] <= ((mp_limb_t) maxval >> GMP_NUMB_BITS)));
  1254. #endif
  1255. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpz_fits_uint_p)
  1256. #if ! defined (__GMP_FORCE_mpz_fits_uint_p)
  1257. __GMP_EXTERN_INLINE
  1258. #endif
  1259. int
  1260. mpz_fits_uint_p (mpz_srcptr __gmp_z) __GMP_NOTHROW
  1261. {
  1262.   __GMPZ_FITS_UTYPE_P (__gmp_z, __GMP_UINT_MAX);
  1263. }
  1264. #endif
  1265. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpz_fits_ulong_p)
  1266. #if ! defined (__GMP_FORCE_mpz_fits_ulong_p)
  1267. __GMP_EXTERN_INLINE
  1268. #endif
  1269. int
  1270. mpz_fits_ulong_p (mpz_srcptr __gmp_z) __GMP_NOTHROW
  1271. {
  1272.   __GMPZ_FITS_UTYPE_P (__gmp_z, __GMP_ULONG_MAX);
  1273. }
  1274. #endif
  1275. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpz_fits_ushort_p)
  1276. #if ! defined (__GMP_FORCE_mpz_fits_ushort_p)
  1277. __GMP_EXTERN_INLINE
  1278. #endif
  1279. int
  1280. mpz_fits_ushort_p (mpz_srcptr __gmp_z) __GMP_NOTHROW
  1281. {
  1282.   __GMPZ_FITS_UTYPE_P (__gmp_z, __GMP_USHRT_MAX);
  1283. }
  1284. #endif
  1285. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpz_get_ui)
  1286. #if ! defined (__GMP_FORCE_mpz_get_ui)
  1287. __GMP_EXTERN_INLINE
  1288. #endif
  1289. unsigned long
  1290. mpz_get_ui (mpz_srcptr __gmp_z) __GMP_NOTHROW
  1291. {
  1292.   mp_ptr __gmp_p = __gmp_z->_mp_d;
  1293.   mp_size_t __gmp_n = __gmp_z->_mp_size;
  1294.   mp_limb_t __gmp_l = __gmp_p[0];
  1295.   /* This is a "#if" rather than a plain "if" so as to avoid gcc warnings
  1296.      about "<< GMP_NUMB_BITS" exceeding the type size, and to avoid Borland
  1297.      C++ 6.0 warnings about condition always true for something like
  1298.      "__GMP_ULONG_MAX < GMP_NUMB_MASK".  */
  1299. #if GMP_NAIL_BITS == 0 || defined (_LONG_LONG_LIMB)
  1300.   /* limb==long and no nails, or limb==longlong, one limb is enough */
  1301.   return (__gmp_n != 0 ? __gmp_l : 0);
  1302. #else
  1303.   /* limb==long and nails, need two limbs when available */
  1304.   __gmp_n = __GMP_ABS (__gmp_n);
  1305.   if (__gmp_n <= 1)
  1306.     return (__gmp_n != 0 ? __gmp_l : 0);
  1307.   else
  1308.     return __gmp_l + (__gmp_p[1] << GMP_NUMB_BITS);
  1309. #endif
  1310. }
  1311. #endif
  1312. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpz_getlimbn)
  1313. #if ! defined (__GMP_FORCE_mpz_getlimbn)
  1314. __GMP_EXTERN_INLINE
  1315. #endif
  1316. mp_limb_t
  1317. mpz_getlimbn (mpz_srcptr __gmp_z, mp_size_t __gmp_n) __GMP_NOTHROW
  1318. {
  1319.   mp_limb_t  __gmp_result = 0;
  1320.   if (__GMP_LIKELY (__gmp_n >= 0 && __gmp_n < __GMP_ABS (__gmp_z->_mp_size)))
  1321.     __gmp_result = __gmp_z->_mp_d[__gmp_n];
  1322.   return __gmp_result;
  1323. }
  1324. #endif
  1325. #if defined (__GMP_EXTERN_INLINE) && ! defined (__GMP_FORCE_mpz_neg)
  1326. __GMP_EXTERN_INLINE void
  1327. mpz_neg (mpz_ptr __gmp_w, mpz_srcptr __gmp_u)
  1328. {
  1329.   if (__gmp_w != __gmp_u)
  1330.     mpz_set (__gmp_w, __gmp_u);
  1331.   __gmp_w->_mp_size = - __gmp_w->_mp_size;
  1332. }
  1333. #endif
  1334. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpz_perfect_square_p)
  1335. #if ! defined (__GMP_FORCE_mpz_perfect_square_p)
  1336. __GMP_EXTERN_INLINE
  1337. #endif
  1338. int
  1339. mpz_perfect_square_p (mpz_srcptr __gmp_a)
  1340. {
  1341.   mp_size_t __gmp_asize;
  1342.   int       __gmp_result;
  1343.   __gmp_asize = __gmp_a->_mp_size;
  1344.   __gmp_result = (__gmp_asize >= 0);  /* zero is a square, negatives are not */
  1345.   if (__GMP_LIKELY (__gmp_asize > 0))
  1346.     __gmp_result = mpn_perfect_square_p (__gmp_a->_mp_d, __gmp_asize);
  1347.   return __gmp_result;
  1348. }
  1349. #endif
  1350. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpz_popcount)
  1351. #if ! defined (__GMP_FORCE_mpz_popcount)
  1352. __GMP_EXTERN_INLINE
  1353. #endif
  1354. mp_bitcnt_t
  1355. mpz_popcount (mpz_srcptr __gmp_u) __GMP_NOTHROW
  1356. {
  1357.   mp_size_t      __gmp_usize;
  1358.   mp_bitcnt_t    __gmp_result;
  1359.   __gmp_usize = __gmp_u->_mp_size;
  1360.   __gmp_result = (__gmp_usize < 0 ? __GMP_ULONG_MAX : 0);
  1361.   if (__GMP_LIKELY (__gmp_usize > 0))
  1362.     __gmp_result =  mpn_popcount (__gmp_u->_mp_d, __gmp_usize);
  1363.   return __gmp_result;
  1364. }
  1365. #endif
  1366. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpz_set_q)
  1367. #if ! defined (__GMP_FORCE_mpz_set_q)
  1368. __GMP_EXTERN_INLINE
  1369. #endif
  1370. void
  1371. mpz_set_q (mpz_ptr __gmp_w, mpq_srcptr __gmp_u)
  1372. {
  1373.   mpz_tdiv_q (__gmp_w, mpq_numref (__gmp_u), mpq_denref (__gmp_u));
  1374. }
  1375. #endif
  1376. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpz_size)
  1377. #if ! defined (__GMP_FORCE_mpz_size)
  1378. __GMP_EXTERN_INLINE
  1379. #endif
  1380. size_t
  1381. mpz_size (mpz_srcptr __gmp_z) __GMP_NOTHROW
  1382. {
  1383.   return __GMP_ABS (__gmp_z->_mp_size);
  1384. }
  1385. #endif
  1386. /**************** mpq inlines ****************/
  1387. #if defined (__GMP_EXTERN_INLINE) && ! defined (__GMP_FORCE_mpq_abs)
  1388. __GMP_EXTERN_INLINE void
  1389. mpq_abs (mpq_ptr __gmp_w, mpq_srcptr __gmp_u)
  1390. {
  1391.   if (__gmp_w != __gmp_u)
  1392.     mpq_set (__gmp_w, __gmp_u);
  1393.   __gmp_w->_mp_num._mp_size = __GMP_ABS (__gmp_w->_mp_num._mp_size);
  1394. }
  1395. #endif
  1396. #if defined (__GMP_EXTERN_INLINE) && ! defined (__GMP_FORCE_mpq_neg)
  1397. __GMP_EXTERN_INLINE void
  1398. mpq_neg (mpq_ptr __gmp_w, mpq_srcptr __gmp_u)
  1399. {
  1400.   if (__gmp_w != __gmp_u)
  1401.     mpq_set (__gmp_w, __gmp_u);
  1402.   __gmp_w->_mp_num._mp_size = - __gmp_w->_mp_num._mp_size;
  1403. }
  1404. #endif
  1405. /**************** mpn inlines ****************/
  1406. /* The comments with __GMPN_ADD_1 below apply here too.
  1407.    The test for FUNCTION returning 0 should predict well.  If it's assumed
  1408.    {yp,ysize} will usually have a random number of bits then the high limb
  1409.    won't be full and a carry out will occur a good deal less than 50% of the
  1410.    time.
  1411.    ysize==0 isn't a documented feature, but is used internally in a few
  1412.    places.
  1413.    Producing cout last stops it using up a register during the main part of
  1414.    the calculation, though gcc (as of 3.0) on an "if (mpn_add (...))"
  1415.    doesn't seem able to move the true and false legs of the conditional up
  1416.    to the two places cout is generated.  */
  1417. #define __GMPN_AORS(cout, wp, xp, xsize, yp, ysize, FUNCTION, TEST)     
  1418.   do {                                                                  
  1419.     mp_size_t  __gmp_i;                                                 
  1420.     mp_limb_t  __gmp_x;                                                 
  1421.                                                                         
  1422.     /* ASSERT ((ysize) >= 0); */                                        
  1423.     /* ASSERT ((xsize) >= (ysize)); */                                  
  1424.     /* ASSERT (MPN_SAME_OR_SEPARATE2_P (wp, xsize, xp, xsize)); */      
  1425.     /* ASSERT (MPN_SAME_OR_SEPARATE2_P (wp, xsize, yp, ysize)); */      
  1426.                                                                         
  1427.     __gmp_i = (ysize);                                                  
  1428.     if (__gmp_i != 0)                                                   
  1429.       {                                                                 
  1430.         if (FUNCTION (wp, xp, yp, __gmp_i))                             
  1431.           {                                                             
  1432.             do                                                          
  1433.               {                                                         
  1434.                 if (__gmp_i >= (xsize))                                 
  1435.                   {                                                     
  1436.                     (cout) = 1;                                         
  1437.                     goto __gmp_done;                                    
  1438.                   }                                                     
  1439.                 __gmp_x = (xp)[__gmp_i];                                
  1440.               }                                                         
  1441.             while (TEST);                                               
  1442.           }                                                             
  1443.       }                                                                 
  1444.     if ((wp) != (xp))                                                   
  1445.       __GMPN_COPY_REST (wp, xp, xsize, __gmp_i);                        
  1446.     (cout) = 0;                                                         
  1447.   __gmp_done:                                                           
  1448.     ;                                                                   
  1449.   } while (0)
  1450. #define __GMPN_ADD(cout, wp, xp, xsize, yp, ysize)              
  1451.   __GMPN_AORS (cout, wp, xp, xsize, yp, ysize, mpn_add_n,       
  1452.                (((wp)[__gmp_i++] = (__gmp_x + 1) & GMP_NUMB_MASK) == 0))
  1453. #define __GMPN_SUB(cout, wp, xp, xsize, yp, ysize)              
  1454.   __GMPN_AORS (cout, wp, xp, xsize, yp, ysize, mpn_sub_n,       
  1455.                (((wp)[__gmp_i++] = (__gmp_x - 1) & GMP_NUMB_MASK), __gmp_x == 0))
  1456. /* The use of __gmp_i indexing is designed to ensure a compile time src==dst
  1457.    remains nice and clear to the compiler, so that __GMPN_COPY_REST can
  1458.    disappear, and the load/add/store gets a chance to become a
  1459.    read-modify-write on CISC CPUs.
  1460.    Alternatives:
  1461.    Using a pair of pointers instead of indexing would be possible, but gcc
  1462.    isn't able to recognise compile-time src==dst in that case, even when the
  1463.    pointers are incremented more or less together.  Other compilers would
  1464.    very likely have similar difficulty.
  1465.    gcc could use "if (__builtin_constant_p(src==dst) && src==dst)" or
  1466.    similar to detect a compile-time src==dst.  This works nicely on gcc
  1467.    2.95.x, it's not good on gcc 3.0 where __builtin_constant_p(p==p) seems
  1468.    to be always false, for a pointer p.  But the current code form seems
  1469.    good enough for src==dst anyway.
  1470.    gcc on x86 as usual doesn't give particularly good flags handling for the
  1471.    carry/borrow detection.  It's tempting to want some multi instruction asm
  1472.    blocks to help it, and this was tried, but in truth there's only a few
  1473.    instructions to save and any gain is all too easily lost by register
  1474.    juggling setting up for the asm.  */
  1475. #if GMP_NAIL_BITS == 0
  1476. #define __GMPN_AORS_1(cout, dst, src, n, v, OP, CB)
  1477.   do {
  1478.     mp_size_t  __gmp_i;
  1479.     mp_limb_t  __gmp_x, __gmp_r;                                
  1480.     /* ASSERT ((n) >= 1); */
  1481.     /* ASSERT (MPN_SAME_OR_SEPARATE_P (dst, src, n)); */
  1482.     __gmp_x = (src)[0];
  1483.     __gmp_r = __gmp_x OP (v);                                   
  1484.     (dst)[0] = __gmp_r;
  1485.     if (CB (__gmp_r, __gmp_x, (v)))                             
  1486.       {
  1487. (cout) = 1;
  1488. for (__gmp_i = 1; __gmp_i < (n);)                       
  1489.   {
  1490.     __gmp_x = (src)[__gmp_i];                           
  1491.     __gmp_r = __gmp_x OP 1;                             
  1492.     (dst)[__gmp_i] = __gmp_r;                           
  1493.     ++__gmp_i;
  1494.     if (!CB (__gmp_r, __gmp_x, 1))                      
  1495.       {
  1496. if ((src) != (dst))
  1497.   __GMPN_COPY_REST (dst, src, n, __gmp_i);      
  1498. (cout) = 0;
  1499. break;
  1500.       }
  1501.   }
  1502.       }
  1503.     else
  1504.       {
  1505. if ((src) != (dst))
  1506.   __GMPN_COPY_REST (dst, src, n, 1);
  1507. (cout) = 0;
  1508.       }
  1509.   } while (0)
  1510. #endif
  1511. #if GMP_NAIL_BITS >= 1
  1512. #define __GMPN_AORS_1(cout, dst, src, n, v, OP, CB)
  1513.   do {
  1514.     mp_size_t  __gmp_i;
  1515.     mp_limb_t  __gmp_x, __gmp_r;
  1516.     /* ASSERT ((n) >= 1); */
  1517.     /* ASSERT (MPN_SAME_OR_SEPARATE_P (dst, src, n)); */
  1518.     __gmp_x = (src)[0];
  1519.     __gmp_r = __gmp_x OP (v);
  1520.     (dst)[0] = __gmp_r & GMP_NUMB_MASK;
  1521.     if (__gmp_r >> GMP_NUMB_BITS != 0)
  1522.       {
  1523. (cout) = 1;
  1524. for (__gmp_i = 1; __gmp_i < (n);)
  1525.   {
  1526.     __gmp_x = (src)[__gmp_i];
  1527.     __gmp_r = __gmp_x OP 1;
  1528.     (dst)[__gmp_i] = __gmp_r & GMP_NUMB_MASK;
  1529.     ++__gmp_i;
  1530.     if (__gmp_r >> GMP_NUMB_BITS == 0)
  1531.       {
  1532. if ((src) != (dst))
  1533.   __GMPN_COPY_REST (dst, src, n, __gmp_i);
  1534. (cout) = 0;
  1535. break;
  1536.       }
  1537.   }
  1538.       }
  1539.     else
  1540.       {
  1541. if ((src) != (dst))
  1542.   __GMPN_COPY_REST (dst, src, n, 1);
  1543. (cout) = 0;
  1544.       }
  1545.   } while (0)
  1546. #endif
  1547. #define __GMPN_ADDCB(r,x,y) ((r) < (y))
  1548. #define __GMPN_SUBCB(r,x,y) ((x) < (y))
  1549. #define __GMPN_ADD_1(cout, dst, src, n, v)      
  1550.   __GMPN_AORS_1(cout, dst, src, n, v, +, __GMPN_ADDCB)
  1551. #define __GMPN_SUB_1(cout, dst, src, n, v)      
  1552.   __GMPN_AORS_1(cout, dst, src, n, v, -, __GMPN_SUBCB)
  1553. /* Compare {xp,size} and {yp,size}, setting "result" to positive, zero or
  1554.    negative.  size==0 is allowed.  On random data usually only one limb will
  1555.    need to be examined to get a result, so it's worth having it inline.  */
  1556. #define __GMPN_CMP(result, xp, yp, size)                                
  1557.   do {                                                                  
  1558.     mp_size_t  __gmp_i;                                                 
  1559.     mp_limb_t  __gmp_x, __gmp_y;                                        
  1560.                                                                         
  1561.     /* ASSERT ((size) >= 0); */                                         
  1562.                                                                         
  1563.     (result) = 0;                                                       
  1564.     __gmp_i = (size);                                                   
  1565.     while (--__gmp_i >= 0)                                              
  1566.       {                                                                 
  1567.         __gmp_x = (xp)[__gmp_i];                                        
  1568.         __gmp_y = (yp)[__gmp_i];                                        
  1569.         if (__gmp_x != __gmp_y)                                         
  1570.           {                                                             
  1571.             /* Cannot use __gmp_x - __gmp_y, may overflow an "int" */   
  1572.             (result) = (__gmp_x > __gmp_y ? 1 : -1);                    
  1573.             break;                                                      
  1574.           }                                                             
  1575.       }                                                                 
  1576.   } while (0)
  1577. #if defined (__GMPN_COPY) && ! defined (__GMPN_COPY_REST)
  1578. #define __GMPN_COPY_REST(dst, src, size, start)                 
  1579.   do {                                                          
  1580.     /* ASSERT ((start) >= 0); */                                
  1581.     /* ASSERT ((start) <= (size)); */                           
  1582.     __GMPN_COPY ((dst)+(start), (src)+(start), (size)-(start)); 
  1583.   } while (0)
  1584. #endif
  1585. /* Copy {src,size} to {dst,size}, starting at "start".  This is designed to
  1586.    keep the indexing dst[j] and src[j] nice and simple for __GMPN_ADD_1,
  1587.    __GMPN_ADD, etc.  */
  1588. #if ! defined (__GMPN_COPY_REST)
  1589. #define __GMPN_COPY_REST(dst, src, size, start)                 
  1590.   do {                                                          
  1591.     mp_size_t __gmp_j;                                          
  1592.     /* ASSERT ((size) >= 0); */                                 
  1593.     /* ASSERT ((start) >= 0); */                                
  1594.     /* ASSERT ((start) <= (size)); */                           
  1595.     /* ASSERT (MPN_SAME_OR_SEPARATE_P (dst, src, size)); */     
  1596.     __GMP_CRAY_Pragma ("_CRI ivdep");                           
  1597.     for (__gmp_j = (start); __gmp_j < (size); __gmp_j++)        
  1598.       (dst)[__gmp_j] = (src)[__gmp_j];                          
  1599.   } while (0)
  1600. #endif
  1601. /* Enhancement: Use some of the smarter code from gmp-impl.h.  Maybe use
  1602.    mpn_copyi if there's a native version, and if we don't mind demanding
  1603.    binary compatibility for it (on targets which use it).  */
  1604. #if ! defined (__GMPN_COPY)
  1605. #define __GMPN_COPY(dst, src, size)   __GMPN_COPY_REST (dst, src, size, 0)
  1606. #endif
  1607. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpn_add)
  1608. #if ! defined (__GMP_FORCE_mpn_add)
  1609. __GMP_EXTERN_INLINE
  1610. #endif
  1611. mp_limb_t
  1612. mpn_add (mp_ptr __gmp_wp, mp_srcptr __gmp_xp, mp_size_t __gmp_xsize, mp_srcptr __gmp_yp, mp_size_t __gmp_ysize)
  1613. {
  1614.   mp_limb_t  __gmp_c;
  1615.   __GMPN_ADD (__gmp_c, __gmp_wp, __gmp_xp, __gmp_xsize, __gmp_yp, __gmp_ysize);
  1616.   return __gmp_c;
  1617. }
  1618. #endif
  1619. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpn_add_1)
  1620. #if ! defined (__GMP_FORCE_mpn_add_1)
  1621. __GMP_EXTERN_INLINE
  1622. #endif
  1623. mp_limb_t
  1624. mpn_add_1 (mp_ptr __gmp_dst, mp_srcptr __gmp_src, mp_size_t __gmp_size, mp_limb_t __gmp_n) __GMP_NOTHROW
  1625. {
  1626.   mp_limb_t  __gmp_c;
  1627.   __GMPN_ADD_1 (__gmp_c, __gmp_dst, __gmp_src, __gmp_size, __gmp_n);
  1628.   return __gmp_c;
  1629. }
  1630. #endif
  1631. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpn_cmp)
  1632. #if ! defined (__GMP_FORCE_mpn_cmp)
  1633. __GMP_EXTERN_INLINE
  1634. #endif
  1635. int
  1636. mpn_cmp (mp_srcptr __gmp_xp, mp_srcptr __gmp_yp, mp_size_t __gmp_size) __GMP_NOTHROW
  1637. {
  1638.   int __gmp_result;
  1639.   __GMPN_CMP (__gmp_result, __gmp_xp, __gmp_yp, __gmp_size);
  1640.   return __gmp_result;
  1641. }
  1642. #endif
  1643. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpn_sub)
  1644. #if ! defined (__GMP_FORCE_mpn_sub)
  1645. __GMP_EXTERN_INLINE
  1646. #endif
  1647. mp_limb_t
  1648. mpn_sub (mp_ptr __gmp_wp, mp_srcptr __gmp_xp, mp_size_t __gmp_xsize, mp_srcptr __gmp_yp, mp_size_t __gmp_ysize)
  1649. {
  1650.   mp_limb_t  __gmp_c;
  1651.   __GMPN_SUB (__gmp_c, __gmp_wp, __gmp_xp, __gmp_xsize, __gmp_yp, __gmp_ysize);
  1652.   return __gmp_c;
  1653. }
  1654. #endif
  1655. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpn_sub_1)
  1656. #if ! defined (__GMP_FORCE_mpn_sub_1)
  1657. __GMP_EXTERN_INLINE
  1658. #endif
  1659. mp_limb_t
  1660. mpn_sub_1 (mp_ptr __gmp_dst, mp_srcptr __gmp_src, mp_size_t __gmp_size, mp_limb_t __gmp_n) __GMP_NOTHROW
  1661. {
  1662.   mp_limb_t  __gmp_c;
  1663.   __GMPN_SUB_1 (__gmp_c, __gmp_dst, __gmp_src, __gmp_size, __gmp_n);
  1664.   return __gmp_c;
  1665. }
  1666. #endif
  1667. #if defined (__GMP_EXTERN_INLINE) || defined (__GMP_FORCE_mpn_neg)
  1668. #if ! defined (__GMP_FORCE_mpn_neg)
  1669. __GMP_EXTERN_INLINE
  1670. #endif
  1671. mp_limb_t
  1672. mpn_neg (mp_ptr __gmp_rp, mp_srcptr __gmp_up, mp_size_t __gmp_n)
  1673. {
  1674.   mp_limb_t __gmp_ul, __gmp_cy;
  1675.   __gmp_cy = 0;
  1676.   do {
  1677.       __gmp_ul = *__gmp_up++;
  1678.       *__gmp_rp++ = -__gmp_ul - __gmp_cy;
  1679.       __gmp_cy |= __gmp_ul != 0;
  1680.   } while (--__gmp_n != 0);
  1681.   return __gmp_cy;
  1682. }
  1683. #endif
  1684. #if defined (__cplusplus)
  1685. }
  1686. #endif
  1687. /* Allow faster testing for negative, zero, and positive.  */
  1688. #define mpz_sgn(Z) ((Z)->_mp_size < 0 ? -1 : (Z)->_mp_size > 0)
  1689. #define mpf_sgn(F) ((F)->_mp_size < 0 ? -1 : (F)->_mp_size > 0)
  1690. #define mpq_sgn(Q) ((Q)->_mp_num._mp_size < 0 ? -1 : (Q)->_mp_num._mp_size > 0)
  1691. /* When using GCC, optimize certain common comparisons.  */
  1692. #if defined (__GNUC__) && __GNUC__ >= 2
  1693. #define mpz_cmp_ui(Z,UI) 
  1694.   (__builtin_constant_p (UI) && (UI) == 0
  1695.    ? mpz_sgn (Z) : _mpz_cmp_ui (Z,UI))
  1696. #define mpz_cmp_si(Z,SI) 
  1697.   (__builtin_constant_p (SI) && (SI) == 0 ? mpz_sgn (Z)
  1698.    : __builtin_constant_p (SI) && (SI) > 0
  1699.     ? _mpz_cmp_ui (Z, __GMP_CAST (unsigned long int, SI))
  1700.    : _mpz_cmp_si (Z,SI))
  1701. #define mpq_cmp_ui(Q,NUI,DUI) 
  1702.   (__builtin_constant_p (NUI) && (NUI) == 0
  1703.    ? mpq_sgn (Q) : _mpq_cmp_ui (Q,NUI,DUI))
  1704. #define mpq_cmp_si(q,n,d)                       
  1705.   (__builtin_constant_p ((n) >= 0) && (n) >= 0  
  1706.    ? mpq_cmp_ui (q, __GMP_CAST (unsigned long, n), d) 
  1707.    : _mpq_cmp_si (q, n, d))
  1708. #else
  1709. #define mpz_cmp_ui(Z,UI) _mpz_cmp_ui (Z,UI)
  1710. #define mpz_cmp_si(Z,UI) _mpz_cmp_si (Z,UI)
  1711. #define mpq_cmp_ui(Q,NUI,DUI) _mpq_cmp_ui (Q,NUI,DUI)
  1712. #define mpq_cmp_si(q,n,d)  _mpq_cmp_si(q,n,d)
  1713. #endif
  1714. /* Using "&" rather than "&&" means these can come out branch-free.  Every
  1715.    mpz_t has at least one limb allocated, so fetching the low limb is always
  1716.    allowed.  */
  1717. #define mpz_odd_p(z)   (((z)->_mp_size != 0) & __GMP_CAST (int, (z)->_mp_d[0]))
  1718. #define mpz_even_p(z)  (! mpz_odd_p (z))
  1719. /**************** C++ routines ****************/
  1720. #ifdef __cplusplus
  1721. __GMP_DECLSPEC_XX std::ostream& operator<< (std::ostream &, mpz_srcptr);
  1722. __GMP_DECLSPEC_XX std::ostream& operator<< (std::ostream &, mpq_srcptr);
  1723. __GMP_DECLSPEC_XX std::ostream& operator<< (std::ostream &, mpf_srcptr);
  1724. __GMP_DECLSPEC_XX std::istream& operator>> (std::istream &, mpz_ptr);
  1725. __GMP_DECLSPEC_XX std::istream& operator>> (std::istream &, mpq_ptr);
  1726. __GMP_DECLSPEC_XX std::istream& operator>> (std::istream &, mpf_ptr);
  1727. #endif
  1728. /* Source-level compatibility with GMP 2 and earlier. */
  1729. #define mpn_divmod(qp,np,nsize,dp,dsize) 
  1730.   mpn_divrem (qp, __GMP_CAST (mp_size_t, 0), np, nsize, dp, dsize)
  1731. /* Source-level compatibility with GMP 1.  */
  1732. #define mpz_mdiv mpz_fdiv_q
  1733. #define mpz_mdivmod mpz_fdiv_qr
  1734. #define mpz_mmod mpz_fdiv_r
  1735. #define mpz_mdiv_ui mpz_fdiv_q_ui
  1736. #define mpz_mdivmod_ui(q,r,n,d) 
  1737.   (((r) == 0) ? mpz_fdiv_q_ui (q,n,d) : mpz_fdiv_qr_ui (q,r,n,d))
  1738. #define mpz_mmod_ui(r,n,d) 
  1739.   (((r) == 0) ? mpz_fdiv_ui (n,d) : mpz_fdiv_r_ui (r,n,d))
  1740. /* Useful synonyms, but not quite compatible with GMP 1.  */
  1741. #define mpz_div mpz_fdiv_q
  1742. #define mpz_divmod mpz_fdiv_qr
  1743. #define mpz_div_ui mpz_fdiv_q_ui
  1744. #define mpz_divmod_ui mpz_fdiv_qr_ui
  1745. #define mpz_div_2exp mpz_fdiv_q_2exp
  1746. #define mpz_mod_2exp mpz_fdiv_r_2exp
  1747. enum
  1748. {
  1749.   GMP_ERROR_NONE = 0,
  1750.   GMP_ERROR_UNSUPPORTED_ARGUMENT = 1,
  1751.   GMP_ERROR_DIVISION_BY_ZERO = 2,
  1752.   GMP_ERROR_SQRT_OF_NEGATIVE = 4,
  1753.   GMP_ERROR_INVALID_ARGUMENT = 8
  1754. };
  1755. /* Define CC and CFLAGS which were used to build this version of GMP */
  1756. #define __GMP_CC "@CC@"
  1757. #define __GMP_CFLAGS "@CFLAGS@"
  1758. /* Major version number is the value of __GNU_MP__ too, above and in mp.h. */
  1759. #define __GNU_MP_VERSION 5
  1760. #define __GNU_MP_VERSION_MINOR 0
  1761. #define __GNU_MP_VERSION_PATCHLEVEL 1
  1762. #define __GMP_MP_RELEASE (__GNU_MP_VERSION * 10000 + __GNU_MP_VERSION_MINOR * 100 + __GNU_MP_VERSION_PATCHLEVEL)
  1763. #define __GMP_H__
  1764. #endif /* __GMP_H__ */