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

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

?? math.h

?? free sources for gsm
?? H
?? 第 1 頁(yè) / 共 2 頁(yè)
字號(hào):
/***
*math.h - definitions and declarations for math library
*
*       Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
*       This file contains constant definitions and external subroutine
*       declarations for the math subroutine library.
*       [ANSI/System V]
*
*       [Public]
*
****/

#if     _MSC_VER > 1000
#pragma once
#endif

#ifndef _INC_MATH
#define _INC_MATH

//#if     !defined(_WIN32) && !defined(_MAC)
//#error ERROR: Only Mac or Win32 targets supported!
//#endif


#ifdef  _MSC_VER
/*
 * Currently, all MS C compilers for Win32 platforms default to 8 byte
 * alignment.
 */
#pragma pack(push,8)
#endif  /* _MSC_VER */

#ifdef __cplusplus
extern "C" {
#endif

#ifndef __assembler /* Protect from assembler */

/* Define _CRTIMP */

#ifndef _CRTIMP
#ifdef  _DLL
#define _CRTIMP __declspec(dllimport)
#else   /* ndef _DLL */
#define _CRTIMP
#endif  /* _DLL */
#endif  /* _CRTIMP */


/* Define __cdecl for non-Microsoft compilers */

#if     ( !defined(_MSC_VER) && !defined(__cdecl) )
#define __cdecl
#endif

/* Define _CRTAPI1 (for compatibility with the NT SDK) */

#ifndef _CRTAPI1
#if	_MSC_VER >= 800 && _M_IX86 >= 300
#define _CRTAPI1 __cdecl
#else
#define _CRTAPI1
#endif
#endif


/* Definition of _exception struct - this struct is passed to the matherr
 * routine when a floating point exception is detected
 */

#ifndef _EXCEPTION_DEFINED
struct _exception {
        int type;       /* exception type - see below */
        char *name;     /* name of function where error occured */
        double arg1;    /* first argument to function */
        double arg2;    /* second argument (if any) to function */
        double retval;  /* value to be returned by function */
        } ;

#define _EXCEPTION_DEFINED
#endif


/* Definition of a _complex struct to be used by those who use cabs and
 * want type checking on their argument
 */

#ifndef _COMPLEX_DEFINED
struct _complex {
        double x,y; /* real and imaginary parts */
        } ;

#if     !__STDC__ && !defined (__cplusplus)
/* Non-ANSI name for compatibility */
#define complex _complex
#endif

#define _COMPLEX_DEFINED
#endif
#endif  /* __assembler */


/* Constant definitions for the exception type passed in the _exception struct
 */

#define _DOMAIN     1   /* argument domain error */
#define _SING       2   /* argument singularity */
#define _OVERFLOW   3   /* overflow range error */
#define _UNDERFLOW  4   /* underflow range error */
#define _TLOSS      5   /* total loss of precision */
#define _PLOSS      6   /* partial loss of precision */

#define EDOM        33
#define ERANGE      34


/* Definitions of _HUGE and HUGE_VAL - respectively the XENIX and ANSI names
 * for a value returned in case of error by a number of the floating point
 * math routines
 */
#ifndef __assembler /* Protect from assembler */
_CRTIMP extern double _HUGE;
#endif  /* __assembler */

#define HUGE_VAL _HUGE


/* Function prototypes */

#if     !defined(__assembler)   /* Protect from assembler */
#if     _M_MRX000
_CRTIMP int     __cdecl abs(int);
_CRTIMP double  __cdecl acos(double);
_CRTIMP double  __cdecl asin(double);
_CRTIMP double  __cdecl atan(double);
_CRTIMP double  __cdecl atan2(double, double);
_CRTIMP double  __cdecl cos(double);
_CRTIMP double  __cdecl cosh(double);
_CRTIMP double  __cdecl exp(double);
_CRTIMP double  __cdecl fabs(double);
_CRTIMP double  __cdecl fmod(double, double);
_CRTIMP long    __cdecl labs(long);
_CRTIMP double  __cdecl log(double);
_CRTIMP double  __cdecl log10(double);
_CRTIMP double  __cdecl pow(double, double);
_CRTIMP double  __cdecl sin(double);
_CRTIMP double  __cdecl sinh(double);
_CRTIMP double  __cdecl tan(double);
_CRTIMP double  __cdecl tanh(double);
_CRTIMP double  __cdecl sqrt(double);
#else
        int     __cdecl abs(int);
        double  __cdecl acos(double);
        double  __cdecl asin(double);
        double  __cdecl atan(double);
        double  __cdecl atan2(double, double);
        double  __cdecl cos(double);
        double  __cdecl cosh(double);
        double  __cdecl exp(double);
        double  __cdecl fabs(double);
        double  __cdecl fmod(double, double);
        long    __cdecl labs(long);
        double  __cdecl log(double);
        double  __cdecl log10(double);
        double  __cdecl pow(double, double);
        double  __cdecl sin(double);
        double  __cdecl sinh(double);
        double  __cdecl tan(double);
        double  __cdecl tanh(double);
        double  __cdecl sqrt(double);
#endif
_CRTIMP double  __cdecl atof(const char *);
_CRTIMP double  __cdecl _cabs(struct _complex);
#if     defined(_M_ALPHA)
        double  __cdecl ceil(double);
        double  __cdecl floor(double);
#else
_CRTIMP double  __cdecl ceil(double);
_CRTIMP double  __cdecl floor(double);
#endif
_CRTIMP double  __cdecl frexp(double, int *);
_CRTIMP double  __cdecl _hypot(double, double);
_CRTIMP double  __cdecl _j0(double);
_CRTIMP double  __cdecl _j1(double);
_CRTIMP double  __cdecl _jn(int, double);
_CRTIMP double  __cdecl ldexp(double, int);
        int     __cdecl _matherr(struct _exception *);
_CRTIMP double  __cdecl modf(double, double *);

_CRTIMP double  __cdecl _y0(double);
_CRTIMP double  __cdecl _y1(double);
_CRTIMP double  __cdecl _yn(int, double);


#if     defined(_M_MRX000)

/* MIPS fast prototypes for float */
/* ANSI C, 4.5 Mathematics        */

/* 4.5.2 Trigonometric functions */

_CRTIMP float  __cdecl acosf( float );
_CRTIMP float  __cdecl asinf( float );
_CRTIMP float  __cdecl atanf( float );
_CRTIMP float  __cdecl atan2f( float , float );
_CRTIMP float  __cdecl cosf( float );
_CRTIMP float  __cdecl sinf( float );
_CRTIMP float  __cdecl tanf( float );

/* 4.5.3 Hyperbolic functions */
_CRTIMP float  __cdecl coshf( float );
_CRTIMP float  __cdecl sinhf( float );
_CRTIMP float  __cdecl tanhf( float );

/* 4.5.4 Exponential and logarithmic functions */
_CRTIMP float  __cdecl expf( float );
_CRTIMP float  __cdecl logf( float );
_CRTIMP float  __cdecl log10f( float );
_CRTIMP float  __cdecl modff( float , float* );

/* 4.5.5 Power functions */
_CRTIMP float  __cdecl powf( float , float );
        float  __cdecl sqrtf( float );

/* 4.5.6 Nearest integer, absolute value, and remainder functions */
        float  __cdecl ceilf( float );
        float  __cdecl fabsf( float );
        float  __cdecl floorf( float );
_CRTIMP float  __cdecl fmodf( float , float );

_CRTIMP float  __cdecl hypotf(float, float);

#endif  /* _M_MRX000 */

#if     defined(_M_ALPHA)

/* ALPHA fast prototypes for float */
/* ANSI C, 4.5 Mathematics        */

/* 4.5.2 Trigonometric functions */

        float  __cdecl acosf( float );
        float  __cdecl asinf( float );
        float  __cdecl atanf( float );
        float  __cdecl atan2f( float , float );
        float  __cdecl cosf( float );
        float  __cdecl sinf( float );
        float  __cdecl tanf( float );

/* 4.5.3 Hyperbolic functions */
        float  __cdecl coshf( float );
        float  __cdecl sinhf( float );
        float  __cdecl tanhf( float );

/* 4.5.4 Exponential and logarithmic functions */
        float  __cdecl expf( float );
        float  __cdecl logf( float );
        float  __cdecl log10f( float );
_CRTIMP float  __cdecl modff( float , float* );

/* 4.5.5 Power functions */
        float  __cdecl powf( float , float );
        float  __cdecl sqrtf( float );

/* 4.5.6 Nearest integer, absolute value, and remainder functions */
        float  __cdecl ceilf( float );
        float  __cdecl fabsf( float );
        float  __cdecl floorf( float );
        float  __cdecl fmodf( float , float );

_CRTIMP float  __cdecl _hypotf(float, float);

#endif  /* _M_ALPHA */

#if     !defined(_M_M68K)
/* Macros defining long double functions to be their double counterparts
 * (long double is synonymous with double in this implementation).
 */


#ifndef __cplusplus
#define acosl(x)    ((long double)acos((double)(x)))
#define asinl(x)    ((long double)asin((double)(x)))
#define atanl(x)    ((long double)atan((double)(x)))
#define atan2l(x,y) ((long double)atan2((double)(x), (double)(y)))
#define _cabsl      _cabs
#define ceill(x)    ((long double)ceil((double)(x)))
#define cosl(x)     ((long double)cos((double)(x)))
#define coshl(x)    ((long double)cosh((double)(x)))
#define expl(x)     ((long double)exp((double)(x)))
#define fabsl(x)    ((long double)fabs((double)(x)))
#define floorl(x)   ((long double)floor((double)(x)))
#define fmodl(x,y)  ((long double)fmod((double)(x), (double)(y)))
#define frexpl(x,y) ((long double)frexp((double)(x), (y)))
#define _hypotl(x,y)    ((long double)_hypot((double)(x), (double)(y)))
#define ldexpl(x,y) ((long double)ldexp((double)(x), (y)))
#define logl(x)     ((long double)log((double)(x)))
#define log10l(x)   ((long double)log10((double)(x)))
#define _matherrl   _matherr
#define modfl(x,y)  ((long double)modf((double)(x), (double *)(y)))
#define powl(x,y)   ((long double)pow((double)(x), (double)(y)))
#define sinl(x)     ((long double)sin((double)(x)))
#define sinhl(x)    ((long double)sinh((double)(x)))
#define sqrtl(x)    ((long double)sqrt((double)(x)))
#define tanl(x)     ((long double)tan((double)(x)))
#define tanhl(x)    ((long double)tanh((double)(x)))
#else   /* __cplusplus */
inline long double acosl(long double _X)
        {return (acos((double)_X)); }
inline long double asinl(long double _X)
        {return (asin((double)_X)); }
inline long double atanl(long double _X)
        {return (atan((double)_X)); }
inline long double atan2l(long double _X, long double _Y)
        {return (atan2((double)_X, (double)_Y)); }
inline long double ceill(long double _X)
        {return (ceil((double)_X)); }
inline long double cosl(long double _X)
        {return (cos((double)_X)); }
inline long double coshl(long double _X)

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产综合色在线| 日本不卡高清视频| 国产片一区二区| 欧美一级免费大片| 日韩一区二区三区av| 5858s免费视频成人| 欧美高清你懂得| 欧美精品第1页| 欧美一级欧美三级在线观看| 精品成a人在线观看| 欧美一级二级在线观看| 91精品国产色综合久久久蜜香臀| 日韩一区二区电影网| 久久日一线二线三线suv| 国产日韩精品一区二区三区在线| 中文一区在线播放| 亚洲精品欧美专区| 午夜影院久久久| 久久成人精品无人区| 国产·精品毛片| 色国产综合视频| 欧美高清精品3d| 日本一区二区在线不卡| 亚洲免费视频成人| 免费成人美女在线观看| 国产精品一级片| 91福利精品视频| 欧美videos中文字幕| 亚洲色图.com| 日韩高清电影一区| 成人h动漫精品| 欧美性猛片aaaaaaa做受| 欧美大胆一级视频| 中文字幕制服丝袜一区二区三区 | 亚洲成人精品一区| 国产又黄又大久久| 91久久免费观看| 欧美精品一区二区三区在线播放 | 日韩国产一二三区| 成人免费看的视频| 6080日韩午夜伦伦午夜伦| 国产精品久久久久久久裸模| 免费在线观看精品| 91色在线porny| 久久天天做天天爱综合色| 亚洲午夜激情av| youjizz国产精品| 欧美大黄免费观看| 亚洲电影激情视频网站| 成人高清视频在线| 精品国产乱码久久久久久牛牛| 国产精品成人一区二区三区夜夜夜| 日本不卡123| 欧美在线一区二区三区| 国产精品女主播av| 久久成人免费电影| 日韩一二三四区| 日韩黄色小视频| 欧美午夜精品一区二区蜜桃| 一区二区三区日本| 国产在线视频精品一区| 日韩精品一区二区三区四区视频| 亚洲码国产岛国毛片在线| 不卡一区中文字幕| 国产三级精品三级| 国产精品一区一区| 久久久久久久精| 国产在线精品一区在线观看麻豆| 欧美一级黄色大片| 麻豆一区二区三| 91精品国产日韩91久久久久久| 亚洲va欧美va天堂v国产综合| 日本道免费精品一区二区三区| 国产精品久线观看视频| 从欧美一区二区三区| 国产日产精品1区| 国产91露脸合集magnet| 欧美国产精品v| 成人动漫一区二区在线| ㊣最新国产の精品bt伙计久久| 国产成人免费在线观看| 国产欧美日韩亚州综合 | 亚洲人成精品久久久久| 成人av电影在线| 亚洲人成7777| 欧美乱妇20p| 理论片日本一区| 久久久国际精品| 成人av在线一区二区三区| 亚洲青青青在线视频| 欧美日韩视频在线第一区 | 91在线你懂得| 亚洲一区二区av电影| 欧美另类久久久品| 久久爱www久久做| 国产情人综合久久777777| 国产不卡高清在线观看视频| 国产精品乱码妇女bbbb| 欧洲精品一区二区| 五月综合激情网| 久久久午夜精品| 日本福利一区二区| 日韩av电影免费观看高清完整版| 久久久综合视频| 色哟哟国产精品| 欧美a级一区二区| 国产精品高潮久久久久无| 欧美日韩国产经典色站一区二区三区| 蜜桃视频在线一区| 国产精品久久777777| 欧美日韩国产123区| 国产精品自拍毛片| 性久久久久久久久| 国产精品你懂的在线欣赏| 欧美亚洲国产一区二区三区va| 麻豆精品一区二区av白丝在线| 国产精品久久久久永久免费观看| 欧美日韩精品福利| 成人精品电影在线观看| 蜜桃久久久久久久| 伊人婷婷欧美激情| 久久精品免费在线观看| 欧美日韩dvd在线观看| av电影天堂一区二区在线| 日韩二区三区四区| 亚洲精品国产成人久久av盗摄 | 国产精品一区二区三区网站| 亚洲一区在线电影| 国产精品嫩草99a| 日韩视频免费观看高清完整版| 色综合久久99| 成人av中文字幕| 成人中文字幕合集| 黄色日韩网站视频| 日韩和欧美一区二区三区| 国产精品护士白丝一区av| 精品对白一区国产伦| 欧美一级欧美三级| 欧美另类高清zo欧美| 在线观看免费成人| 91啪亚洲精品| 成人av在线电影| 国产精品亚洲第一| 国产精品一二三区| 狠狠色丁香久久婷婷综合丁香| 人人精品人人爱| 视频一区欧美精品| 香蕉久久夜色精品国产使用方法 | 日本91福利区| 日韩国产欧美三级| 日韩电影在线观看一区| 天天免费综合色| 日韩福利电影在线| 人人精品人人爱| 另类中文字幕网| 国产一区二区主播在线| 国产尤物一区二区在线| 国产精品一区二区在线播放| 国产精品99久久久| 成人动漫精品一区二区| 99re热这里只有精品视频| 99热国产精品| 色综合色综合色综合| 欧美色视频一区| 91精品国产综合久久久久久漫画 | 五月天激情小说综合| 日韩国产欧美在线观看| 老司机精品视频导航| 国产精品一区二区久久不卡 | 久久99国产乱子伦精品免费| 久久精品国产成人一区二区三区 | 亚洲女同一区二区| 亚洲另类春色校园小说| 日韩精品成人一区二区三区| 国产最新精品精品你懂的| 成人性生交大片免费| 色吧成人激情小说| 日韩一区二区三区在线视频| 欧美激情一区二区三区四区| 亚洲欧美视频在线观看| 日本免费在线视频不卡一不卡二| 久久国产人妖系列| 99国内精品久久| 欧美一区二区在线不卡| 久久九九久精品国产免费直播| 亚洲精品一二三| 蜜桃视频第一区免费观看| 不卡视频在线看| 91麻豆精品国产| 久久五月婷婷丁香社区| 一区二区三区成人| 国产福利91精品| 欧美精品乱码久久久久久按摩 | 亚洲精品免费电影| 久久99精品国产91久久来源| 日本精品视频一区二区| 欧美国产精品中文字幕| 天堂va蜜桃一区二区三区| 91色porny在线视频| 久久青草国产手机看片福利盒子|