代码搜索:math
找到约 10,000 项符合「math」的源代码
代码结果 10,000
www.eeworm.com/read/129924/5966095
h __math.h
/*
* ANSI/POSIX
*/
extern char __infinity[];
#define HUGE_VAL (*(double *) __infinity)
www.eeworm.com/read/129924/5966127
h __math.h
/*
* ANSI/POSIX
*/
extern char __infinity[];
#define HUGE_VAL (*(double *) __infinity)
www.eeworm.com/read/129924/5966142
h __math.h
/*
* ANSI required entries in math.h
*
*/
#ifdef _ANSI_C_SOURCE
#if defined(_IEEE_FP)
# define HUGE_VAL 1.8e308
#else
# define HUGE_VAL 1.797693134862315708e308
#endif
#endif /*_ANSI_C_S
www.eeworm.com/read/129924/5966156
h __math.h
/* Copyright 1994-1995 The Santa Cruz Operation, Inc. All Rights Reserved. */
#if defined(_NO_PROTOTYPE) /* Old, crufty environment */
#include
#elif defined(_XOPEN_SOURCE) || de
www.eeworm.com/read/129924/5966167
h __math.h
extern char __infinity[];
#define HUGE_VAL (*(double *) __infinity)
www.eeworm.com/read/129924/5966187
h __math.h
/* Copyright 1994-1995 The Santa Cruz Operation, Inc. All Rights Reserved. */
#if defined(_NO_PROTOTYPE) /* Old, crufty environment */
#include
#elif defined(_XOPEN_SOURCE) || de
www.eeworm.com/read/129924/5966216
h __math.h
/*
* ANSI/POSIX
*/
typedef union _h_val {
unsigned long _i[2];
double _d;
} _h_val;
#ifdef __STDC__
extern const _h_val __huge_val;
#else
extern _h_val __huge_val;
#endif
#define HUGE_VAL