亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? gmp.h

?? IBE是一種非對(duì)稱密碼技術(shù)
?? H
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
/* Definitions for GNU multiple precision functions.   -*- mode: c -*-

Copyright 1991, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2003,
2004 Free Software Foundation, Inc.

This file is part of the GNU MP Library.

The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.

The GNU MP Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */

#ifndef __GMP_H__

#if defined (__cplusplus)
#include <iosfwd>   /* for istream, ostream */
#endif

/* Instantiated by configure. */
#if ! defined (__GMP_WITHIN_CONFIGURE)
#define __GMP_BITS_PER_MP_LIMB             32
#define __GMP_HAVE_HOST_CPU_FAMILY_power   0
#define __GMP_HAVE_HOST_CPU_FAMILY_powerpc 0
#define GMP_LIMB_BITS                      32
#define GMP_NAIL_BITS                      0
#endif
#define GMP_NUMB_BITS     (GMP_LIMB_BITS - GMP_NAIL_BITS)
#define GMP_NUMB_MASK     ((~ __GMP_CAST (mp_limb_t, 0)) >> GMP_NAIL_BITS)
#define GMP_NUMB_MAX      GMP_NUMB_MASK
#define GMP_NAIL_MASK     (~ GMP_NUMB_MASK)

/* The following (everything under ifndef __GNU_MP__) must be identical in
   gmp.h and mp.h to allow both to be included in an application or during
   the library build.  */
#ifndef __GNU_MP__
#define __GNU_MP__ 4

#define __need_size_t  /* tell gcc stddef.h we only want size_t */
#if defined (__cplusplus)
#include <cstddef>     /* for size_t */
#else
#include <stddef.h>    /* for size_t */
#endif
#undef __need_size_t

/* Instantiated by configure. */
#if ! defined (__GMP_WITHIN_CONFIGURE)
#undef _LONG_LONG_LIMB
#endif

/* __STDC__ - some ANSI compilers define this only to 0, hence the use of
       "defined" and not "__STDC__-0".  In particular Sun workshop C 5.0
       sets __STDC__ to 0, but requires "##" for token pasting.

   _AIX - gnu ansidecl.h asserts that all known AIX compilers are ANSI but
       don't always define __STDC__.

   _mips - gnu ansidecl.h says the RISC/OS MIPS compiler is ANSI in SVR4
       mode, but doesn't define __STDC__.

   _MSC_VER - Microsoft C is ANSI, but __STDC__ is undefined unless the /Za
       option is given (in which case it's 1).

   _WIN32 - tested for by gnu ansidecl.h, no doubt on the assumption that
      all w32 compilers are ansi.  */

#if  defined (__STDC__)                                 \
  || defined (__cplusplus)                              \
  || defined (_AIX)                                     \
  || defined (__DECC)                                   \
  || (defined (__mips) && defined (_SYSTYPE_SVR4))      \
  || defined (_MSC_VER)                                 \
  || defined (_WIN32)
#define __GMP_HAVE_CONST        1
#define __GMP_HAVE_PROTOTYPES   1
#define __GMP_HAVE_TOKEN_PASTE  1
#else
#define __GMP_HAVE_CONST        0
#define __GMP_HAVE_PROTOTYPES   0
#define __GMP_HAVE_TOKEN_PASTE  0
#endif


#if __GMP_HAVE_CONST
#define __gmp_const   const
#define __gmp_signed  signed
#else
#define __gmp_const
#define __gmp_signed
#endif


/* __GMP_DECLSPEC supports Windows DLL versions of libgmp, and is empty in
   all other circumstances.

   When compiling objects for libgmp, __GMP_DECLSPEC is an export directive,
   or when compiling for an application it's an import directive.  The two
   cases are differentiated by __GMP_WITHIN_GMP defined by the GMP Makefiles
   (and not defined from an application).

   __GMP_DECLSPEC_XX is similarly used for libgmpxx.  __GMP_WITHIN_GMPXX
   indicates when building libgmpxx, and in that case libgmpxx functions are
   exports, but libgmp functions which might get called are imports.

   libmp.la uses __GMP_DECLSPEC, just as if it were libgmp.la.  libgmp and
   libmp don't call each other, so there's no conflict or confusion.

   Libtool DLL_EXPORT define is not used.

   There's no attempt to support GMP built both static and DLL.  Doing so
   would mean applications would have to tell us which of the two is going
   to be used when linking, and that seems very tedious and error prone if
   using GMP by hand, and equally tedious from a package since autoconf and
   automake don't give much help.

   __GMP_DECLSPEC is required on all documented global functions and
   variables, the various internals in gmp-impl.h etc can be left unadorned.
   But internals used by the test programs or speed measuring programs
   should have __GMP_DECLSPEC, and certainly constants or variables must
   have it or the wrong address will be resolved.  */

#if defined (__GNUC__)
#define __GMP_DECLSPEC_EXPORT  __declspec(__dllexport__)
#define __GMP_DECLSPEC_IMPORT  __declspec(__dllimport__)
#endif
#if defined (_MSC_VER) || defined (__BORLANDC__)
#define __GMP_DECLSPEC_EXPORT  __declspec(dllexport)
#define __GMP_DECLSPEC_IMPORT  __declspec(dllimport)
#endif
#ifdef __WATCOMC__
#define __GMP_DECLSPEC_EXPORT  __export
#define __GMP_DECLSPEC_IMPORT  __import
#endif
#ifdef __IBMC__
#define __GMP_DECLSPEC_EXPORT  _Export
#define __GMP_DECLSPEC_IMPORT  _Import
#endif

#if __GMP_LIBGMP_DLL
#if __GMP_WITHIN_GMP
/* compiling to go into a DLL libgmp */
#define __GMP_DECLSPEC  __GMP_DECLSPEC_EXPORT
#else
/* compiling to go into an application which will link to a DLL libgmp */
#define __GMP_DECLSPEC  __GMP_DECLSPEC_IMPORT
#endif
#else
/* all other cases */
#define __GMP_DECLSPEC
#endif


#ifdef __GMP_SHORT_LIMB
typedef unsigned int		mp_limb_t;
typedef int			mp_limb_signed_t;
#else
#ifdef _LONG_LONG_LIMB
typedef unsigned long long int	mp_limb_t;
typedef long long int		mp_limb_signed_t;
#else
typedef unsigned long int	mp_limb_t;
typedef long int		mp_limb_signed_t;
#endif
#endif

typedef mp_limb_t *		mp_ptr;
typedef __gmp_const mp_limb_t *	mp_srcptr;
#if defined (_CRAY) && ! defined (_CRAYMPP)
/* plain `int' is much faster (48 bits) */
#define __GMP_MP_SIZE_T_INT     1
typedef int			mp_size_t;
typedef int			mp_exp_t;
#else
#define __GMP_MP_SIZE_T_INT     0
typedef long int		mp_size_t;
typedef long int		mp_exp_t;
#endif

typedef struct
{
  int _mp_alloc;		/* Number of *limbs* allocated and pointed
				   to by the _mp_d field.  */
  int _mp_size;			/* abs(_mp_size) is the number of limbs the
				   last field points to.  If _mp_size is
				   negative this is a negative number.  */
  mp_limb_t *_mp_d;		/* Pointer to the limbs.  */
} __mpz_struct;
#endif /* __GNU_MP__ */

typedef __mpz_struct MP_INT;
typedef __mpz_struct mpz_t[1];

typedef struct
{
  __mpz_struct _mp_num;
  __mpz_struct _mp_den;
} __mpq_struct;

typedef __mpq_struct MP_RAT;
typedef __mpq_struct mpq_t[1];

typedef struct
{
  int _mp_prec;			/* Max precision, in number of `mp_limb_t's.
				   Set by mpf_init and modified by
				   mpf_set_prec.  The area pointed to by the
				   _mp_d field contains `prec' + 1 limbs.  */
  int _mp_size;			/* abs(_mp_size) is the number of limbs the
				   last field points to.  If _mp_size is
				   negative this is a negative number.  */
  mp_exp_t _mp_exp;		/* Exponent, in the base of `mp_limb_t'.  */
  mp_limb_t *_mp_d;		/* Pointer to the limbs.  */
} __mpf_struct;

/* typedef __mpf_struct MP_FLOAT; */
typedef __mpf_struct mpf_t[1];

/* Available random number generation algorithms.  */
typedef enum
{
  GMP_RAND_ALG_DEFAULT = 0,
  GMP_RAND_ALG_LC = GMP_RAND_ALG_DEFAULT /* Linear congruential.  */
} gmp_randalg_t;

/* Linear congruential data struct.  */
typedef struct {
  mpz_t _mp_a;			/* Multiplier. */
  unsigned long int _mp_c;	/* Adder. */
  mpz_t _mp_m;			/* Modulus (valid only if m2exp == 0).  */
  unsigned long int _mp_m2exp;	/* If != 0, modulus is 2 ^ m2exp.  */
} __gmp_randata_lc;

/* Random state struct.  */
typedef struct
{
  mpz_t _mp_seed;		/* Current seed.  */
  gmp_randalg_t _mp_alg;	/* Algorithm used.  */
  union {			/* Algorithm specific data.  */
    __gmp_randata_lc *_mp_lc;	/* Linear congruential.  */
  } _mp_algdata;
} __gmp_randstate_struct;
typedef __gmp_randstate_struct gmp_randstate_t[1];

/* Types for function declarations in gmp files.  */
/* ??? Should not pollute user name space with these ??? */
typedef __gmp_const __mpz_struct *mpz_srcptr;
typedef __mpz_struct *mpz_ptr;
typedef __gmp_const __mpf_struct *mpf_srcptr;
typedef __mpf_struct *mpf_ptr;
typedef __gmp_const __mpq_struct *mpq_srcptr;
typedef __mpq_struct *mpq_ptr;


/* This is not wanted in mp.h, so put it outside the __GNU_MP__ common
   section. */
#if __GMP_LIBGMP_DLL
#if __GMP_WITHIN_GMPXX
/* compiling to go into a DLL libgmpxx */
#define __GMP_DECLSPEC_XX  __GMP_DECLSPEC_EXPORT
#else
/* compiling to go into a application which will link to a DLL libgmpxx */
#define __GMP_DECLSPEC_XX  __GMP_DECLSPEC_IMPORT
#endif
#else
/* all other cases */
#define __GMP_DECLSPEC_XX
#endif

#if __GMP_HAVE_PROTOTYPES
#define __GMP_PROTO(x) x
#else
#define __GMP_PROTO(x) ()
#endif

#ifndef __MPN
#if __GMP_HAVE_TOKEN_PASTE
#define __MPN(x) __gmpn_##x
#else
#define __MPN(x) __gmpn_/**/x
#endif
#endif

#if defined (FILE)                                              \
  || defined (H_STDIO)                                          \
  || defined (_H_STDIO)               /* AIX */                 \
  || defined (_STDIO_H)               /* glibc, Sun, SCO */     \
  || defined (_STDIO_H_)              /* BSD, OSF */            \
  || defined (__STDIO_H)              /* Borland */             \
  || defined (__STDIO_H__)            /* IRIX */                \
  || defined (_STDIO_INCLUDED)        /* HPUX */                \
  || defined (__dj_include_stdio_h_)  /* DJGPP */               \
  || defined (_FILE_DEFINED)          /* Microsoft */          \
  || defined (__STDIO__)              /* Apple MPW MrC */       \
  || defined (_MSL_STDIO_H)           /* Metrowerks */
#define _GMP_H_HAVE_FILE 1
#endif

/* In ISO C, if a prototype involving "struct obstack *" is given without
   that structure defined, then the struct is scoped down to just the
   prototype, causing a conflict if it's subsequently defined for real.  So
   only give prototypes if we've got obstack.h.  */
#if defined (_OBSTACK_H)   /* glibc <obstack.h> */
#define _GMP_H_HAVE_OBSTACK 1
#endif

/* The prototypes for gmp_vprintf etc are provided only if va_list is
   available, via an application having included <stdarg.h> or <varargs.h>.
   Usually va_list is a typedef so can't be tested directly, but va_start is
   almost certainly a macro, so look for that.

   <stdio.h> will define some sort of va_list for vprintf and vfprintf, but
   let's not bother trying to use that since it's not standard and since
   application uses for gmp_vprintf etc will almost certainly require the
   whole <stdarg.h> or <varargs.h> anyway.  */

#ifdef va_start
#define _GMP_H_HAVE_VA_LIST 1
#endif

/* Test for gcc >= maj.min, as per __GNUC_PREREQ in glibc */
#if defined (__GNUC__) && defined (__GNUC_MINOR__)
#define __GMP_GNUC_PREREQ(maj, min) \
  ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
#else
#define __GMP_GNUC_PREREQ(maj, min)  0
#endif

/* "pure" is in gcc 2.96 and up, see "(gcc)Function Attributes".  Basically
   it means a function does nothing but examine its arguments and memory
   (global or via arguments) to generate a return value, but changes nothing
   and has no side-effects. */
#if __GMP_GNUC_PREREQ (2,96)
#define __GMP_ATTRIBUTE_PURE   __attribute__ ((__pure__))
#else
#define __GMP_ATTRIBUTE_PURE

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美另类图片小说| 亚洲精品日韩综合观看成人91| 欧美日免费三级在线| 日韩制服丝袜先锋影音| 国产精品女同一区二区三区| 色天天综合色天天久久| 欧美午夜电影在线播放| 欧美日韩精品一区二区天天拍小说 | 欧美高清一级片在线| 91视频观看视频| 国产一区二区三区电影在线观看| 麻豆久久一区二区| 久久久91精品国产一区二区三区| 91亚洲大成网污www| 午夜欧美一区二区三区在线播放| 日韩免费在线观看| 欧美视频日韩视频| 国产一区不卡视频| 日韩高清不卡一区二区三区| 亚洲人吸女人奶水| 中文字幕一区二区三区视频| 2021中文字幕一区亚洲| 在线观看日韩高清av| 丁香网亚洲国际| 日韩三级免费观看| 久久免费偷拍视频| 精品国产一区二区三区av性色| 欧美成人艳星乳罩| 欧美国产97人人爽人人喊| 欧美精品一区二区不卡| 一本色道久久综合狠狠躁的推荐| www.欧美色图| 国产精品视频观看| 成人性生交大片免费看中文| 亚洲国产精品成人久久综合一区| 老司机免费视频一区二区三区| 欧美人成免费网站| 亚洲h在线观看| 538在线一区二区精品国产| 亚洲午夜日本在线观看| 欧美日韩国产一级二级| 日av在线不卡| 欧美变态凌虐bdsm| 国产成人8x视频一区二区| 欧美国产精品v| 91亚洲精品久久久蜜桃网站 | 欧美欧美欧美欧美| 亚洲自拍偷拍网站| 在线观看91av| 国产在线精品视频| 成人免费视频在线观看| 色网站国产精品| 亚洲成av人片在线观看无码| 欧美日韩国产大片| 黄一区二区三区| 欧美国产视频在线| 欧美亚洲自拍偷拍| 久久99精品视频| 久久亚洲精品国产精品紫薇| 成人免费毛片高清视频| 一区二区三区四区视频精品免费 | 韩国av一区二区| 欧美国产日韩一二三区| 91农村精品一区二区在线| 亚洲一区二区三区小说| 日韩免费高清电影| 97久久人人超碰| 青青草精品视频| 成人免费在线视频| 日韩视频在线你懂得| 99re热视频这里只精品| 日本午夜精品一区二区三区电影| 国产欧美精品一区aⅴ影院| 欧美日本韩国一区二区三区视频 | 欧美高清在线一区二区| 欧美日韩国产不卡| 成人午夜电影网站| 免费高清在线视频一区·| 亚洲丝袜精品丝袜在线| 精品成人免费观看| 欧美日韩精品欧美日韩精品一| 国产成人精品aa毛片| 视频一区二区国产| 亚洲欧美欧美一区二区三区| 精品国产一区二区三区四区四| 91福利在线播放| 国产v综合v亚洲欧| 美国精品在线观看| 亚洲国产精品久久人人爱 | 99久久国产综合色|国产精品| 奇米精品一区二区三区在线观看 | 欧洲精品一区二区三区在线观看| 国产伦精品一区二区三区免费迷 | 麻豆精品精品国产自在97香蕉| 《视频一区视频二区| 久久久久久久久97黄色工厂| 欧美精选在线播放| 色综合久久天天| 99久久精品国产网站| 懂色一区二区三区免费观看| 国产精品伊人色| 精品在线免费视频| 久久精品99久久久| 美女在线观看视频一区二区| 偷拍日韩校园综合在线| 亚洲在线观看免费视频| 亚洲精品老司机| 亚洲欧美日韩小说| 欧美精品日日鲁夜夜添| 欧美久久久久久久久久| 国产精品卡一卡二卡三| 亚洲丝袜美腿综合| 91精品综合久久久久久| 成人国产亚洲欧美成人综合网| 免费久久99精品国产| 一区二区三区资源| 日韩欧美一级精品久久| 亚洲国产aⅴ成人精品无吗| 日韩一区二区三区四区| 欧美精品久久天天躁| 欧美精三区欧美精三区| 91精品国产综合久久精品图片 | 精品一区二区三区欧美| www.欧美精品一二区| 欧美一级片在线看| 亚洲资源在线观看| 欧美一区二区三区在线看| 一区二区激情视频| 色综合久久天天| 性感美女极品91精品| 97国产精品videossex| 亚洲免费观看在线观看| 久久精品久久综合| 岛国精品一区二区| 欧美精品v国产精品v日韩精品 | 奇米色777欧美一区二区| 一区视频在线播放| 日韩av二区在线播放| 99国产欧美另类久久久精品| 欧美一二三在线| 亚洲大尺度视频在线观看| 另类小说一区二区三区| 丁香另类激情小说| 欧美系列一区二区| 国产精品国产三级国产aⅴ入口| 久久99精品网久久| 欧美色图在线观看| 日日夜夜精品免费视频| 日韩欧美一区二区在线视频| 欧美精品v日韩精品v韩国精品v| 欧美一级高清片| 日韩精品一级二级| 99re这里都是精品| 一区二区三区欧美亚洲| 狠狠久久亚洲欧美| 色天天综合色天天久久| 日韩欧美亚洲一区二区| 国产精品盗摄一区二区三区| 亚洲一二三专区| 欧美亚洲动漫精品| 亚洲va国产天堂va久久en| 欧美日韩一区久久| 国产精品一品视频| 51久久夜色精品国产麻豆| 成人一区二区三区中文字幕| 五月婷婷欧美视频| 亚洲私人黄色宅男| 亚洲国产成人一区二区三区| 欧美精品777| 7777精品伊人久久久大香线蕉超级流畅| 青青草原综合久久大伊人精品优势| 26uuu亚洲婷婷狠狠天堂| 在线不卡中文字幕| 欧美裸体bbwbbwbbw| 欧美综合亚洲图片综合区| 中文字幕综合网| 欧美一区二区视频观看视频| 国产一区激情在线| 日韩一级高清毛片| 91色在线porny| 久久99久久99小草精品免视看| 中文字幕视频一区二区三区久| 欧美日韩一级黄| 91影视在线播放| 国产99一区视频免费| 久久国内精品自在自线400部| 亚洲伊人伊色伊影伊综合网| 久久午夜国产精品| 在线精品视频免费观看| 欧美日韩一区中文字幕| 亚洲欧美激情插| av在线这里只有精品| 久久久久久久久一| 久久 天天综合| 日韩美女主播在线视频一区二区三区 | 国产一区二区三区黄视频 | 在线观看一区不卡| 日韩美女久久久| 91视频在线观看免费| 亚洲女同一区二区|