os/ossrv/ossrv_pub/math_operations_api/inc/stdapis/math.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Portions Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
sl@0
     3
 * ====================================================
sl@0
     4
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
sl@0
     5
 *
sl@0
     6
 * Developed at SunPro, a Sun Microsystems, Inc. business.
sl@0
     7
 * Permission to use, copy, modify, and distribute this
sl@0
     8
 * software is freely granted, provided that this notice
sl@0
     9
 * is preserved.
sl@0
    10
 * ====================================================
sl@0
    11
 */
sl@0
    12
sl@0
    13
/*
sl@0
    14
 * from: @(#)fdlibm.h 5.1 93/09/24
sl@0
    15
 * $FreeBSD: src/lib/msun/src/math.h,v 1.61 2005/04/16 21:12:47 das Exp $
sl@0
    16
 */
sl@0
    17
sl@0
    18
#ifndef _MATH_H_
sl@0
    19
#define	_MATH_H_
sl@0
    20
sl@0
    21
#if (defined(__SYMBIAN32__) && !defined(SYMBIAN))
sl@0
    22
#define SYMBIAN
sl@0
    23
#endif
sl@0
    24
sl@0
    25
#ifdef __SYMBIAN32__
sl@0
    26
#ifdef __VC32__
sl@0
    27
/* warning C4056: overflow in floating-point constant arithmetic 
sl@0
    28
 * Caused by negative floating point constants, it seems!
sl@0
    29
 * For example, static double foo = -1.0;
sl@0
    30
 */
sl@0
    31
#pragma warning( disable: 4056 )
sl@0
    32
#endif
sl@0
    33
#ifdef __ARMCC__
sl@0
    34
/* Warning:  #222-D: floating-point operation result is out of range
sl@0
    35
 * The compiler detects constant math that overflows, we want overflow though!
sl@0
    36
 * Warning:  #39-D: division by zero
sl@0
    37
*/
sl@0
    38
#pragma diag_suppress 222
sl@0
    39
#pragma diag_suppress 39
sl@0
    40
#pragma diag_suppress 2874
sl@0
    41
#endif
sl@0
    42
#endif //__SYMBIAN32__
sl@0
    43
sl@0
    44
#ifdef __SYMBIAN32__
sl@0
    45
#include <_ansi.h>
sl@0
    46
#endif //__SYMBIAN32__
sl@0
    47
sl@0
    48
#include <sys/cdefs.h>
sl@0
    49
#include <sys/_types.h>
sl@0
    50
#include <machine/_limits.h>
sl@0
    51
sl@0
    52
#ifdef  __SYMBIAN32__
sl@0
    53
#include <libm_aliases.h>
sl@0
    54
#endif  //__SYMBIAN32__
sl@0
    55
#ifdef __SYMBIAN32__
sl@0
    56
#include <signgam.h>
sl@0
    57
sl@0
    58
// IEC 559 math functionality
sl@0
    59
#define __STDC_IEC_559__		1
sl@0
    60
#endif //__SYMBIAN32__
sl@0
    61
sl@0
    62
/*
sl@0
    63
 * ANSI/POSIX
sl@0
    64
 */
sl@0
    65
#ifndef __SYMBIAN32__
sl@0
    66
extern const union __infinity_un {
sl@0
    67
	unsigned char	__uc[8];
sl@0
    68
	double		__ud;
sl@0
    69
} __infinity;
sl@0
    70
sl@0
    71
extern const union __nan_un {
sl@0
    72
	unsigned char	__uc[sizeof(float)];
sl@0
    73
	float		__uf;
sl@0
    74
} __nan;
sl@0
    75
#endif //__SYMBIAN32__
sl@0
    76
sl@0
    77
#if __GNUC_PREREQ__(3, 3) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 800)
sl@0
    78
#define	__MATH_BUILTIN_CONSTANTS
sl@0
    79
#endif
sl@0
    80
sl@0
    81
#if __GNUC_PREREQ__(3, 0) && !defined(__INTEL_COMPILER)
sl@0
    82
#define	__MATH_BUILTIN_RELOPS
sl@0
    83
#endif
sl@0
    84
sl@0
    85
#ifdef __SYMBIAN32__
sl@0
    86
#define	HUGE_VAL	__infinite(1.0)
sl@0
    87
#else
sl@0
    88
#ifdef __MATH_BUILTIN_CONSTANTS
sl@0
    89
#define	HUGE_VAL	__builtin_huge_val()
sl@0
    90
#else
sl@0
    91
#define	HUGE_VAL	(__infinity.__ud)
sl@0
    92
#endif
sl@0
    93
#endif //__SYMBIAN32__
sl@0
    94
sl@0
    95
#if __ISO_C_VISIBLE >= 1999
sl@0
    96
#define	FP_ILOGB0	(-__INT_MAX)
sl@0
    97
#define	FP_ILOGBNAN	__INT_MAX
sl@0
    98
sl@0
    99
#ifdef __MATH_BUILTIN_CONSTANTS
sl@0
   100
#define	HUGE_VALF	__builtin_huge_valf()
sl@0
   101
#define	HUGE_VALL	__builtin_huge_vall()
sl@0
   102
#define	INFINITY	__builtin_inf()
sl@0
   103
#define	NAN		__builtin_nan("")
sl@0
   104
#else
sl@0
   105
#define	HUGE_VALF	(float)HUGE_VAL
sl@0
   106
#define	HUGE_VALL	(long double)HUGE_VAL
sl@0
   107
#define	INFINITY	HUGE_VALF
sl@0
   108
#ifdef __SYMBIAN32__
sl@0
   109
#define NAN		nanvalf()
sl@0
   110
#else
sl@0
   111
#define	NAN		(__nan.__uf)
sl@0
   112
#endif //__SYMBIAN32__
sl@0
   113
#endif /* __MATH_BUILTIN_CONSTANTS */
sl@0
   114
sl@0
   115
#define	MATH_ERRNO	1
sl@0
   116
#define	MATH_ERREXCEPT	2
sl@0
   117
#define	math_errhandling	MATH_ERREXCEPT
sl@0
   118
sl@0
   119
/* XXX We need a <machine/math.h>. */
sl@0
   120
#if defined(__ia64__) || defined(__sparc64__)
sl@0
   121
#define	FP_FAST_FMA
sl@0
   122
#endif
sl@0
   123
#ifdef __ia64__
sl@0
   124
#define	FP_FAST_FMAL
sl@0
   125
#endif
sl@0
   126
#define	FP_FAST_FMAF
sl@0
   127
sl@0
   128
/* Symbolic constants to classify floating point numbers. */
sl@0
   129
#define	FP_INFINITE	0x01
sl@0
   130
#define	FP_NAN		0x02
sl@0
   131
#define	FP_NORMAL	0x04
sl@0
   132
#define	FP_SUBNORMAL	0x08
sl@0
   133
#define	FP_ZERO		0x10
sl@0
   134
sl@0
   135
#define	fpclassify(x) \
sl@0
   136
    ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \
sl@0
   137
    : (sizeof (x) == sizeof (double)) ? __fpclassifyd(x) \
sl@0
   138
    : __fpclassifyl(x))
sl@0
   139
sl@0
   140
#define	isfinite(x)					\
sl@0
   141
    ((sizeof (x) == sizeof (float)) ? __isfinitef(x)	\
sl@0
   142
    : (sizeof (x) == sizeof (double)) ? __isfinite(x)	\
sl@0
   143
    : __isfinitel(x))
sl@0
   144
#define	isinf(x)					\
sl@0
   145
    ((sizeof (x) == sizeof (float)) ? __isinff(x)	\
sl@0
   146
    : (sizeof (x) == sizeof (double)) ? __isinf(x)	\
sl@0
   147
    : __isinfl(x))
sl@0
   148
#define	isnan(x)					\
sl@0
   149
    ((sizeof (x) == sizeof (float)) ? __isnanf(x)		\
sl@0
   150
    : (sizeof (x) == sizeof (double)) ? __isnan(x)	\
sl@0
   151
    : __isnanl(x))
sl@0
   152
#define	isnormal(x)					\
sl@0
   153
    ((sizeof (x) == sizeof (float)) ? __isnormalf(x)	\
sl@0
   154
    : (sizeof (x) == sizeof (double)) ? __isnormal(x)	\
sl@0
   155
    : __isnormall(x))
sl@0
   156
sl@0
   157
sl@0
   158
#ifdef __MATH_BUILTIN_RELOPS
sl@0
   159
#define	isgreater(x, y)		__builtin_isgreater((x), (y))
sl@0
   160
#define	isgreaterequal(x, y)	__builtin_isgreaterequal((x), (y))
sl@0
   161
#define	isless(x, y)		__builtin_isless((x), (y))
sl@0
   162
#define	islessequal(x, y)	__builtin_islessequal((x), (y))
sl@0
   163
#define	islessgreater(x, y)	__builtin_islessgreater((x), (y))
sl@0
   164
#define	isunordered(x, y)	__builtin_isunordered((x), (y))
sl@0
   165
#else
sl@0
   166
#define	isgreater(x, y)		(!isunordered((x), (y)) && (x) > (y))
sl@0
   167
#define	isgreaterequal(x, y)	(!isunordered((x), (y)) && (x) >= (y))
sl@0
   168
#define	isless(x, y)		(!isunordered((x), (y)) && (x) < (y))
sl@0
   169
#define	islessequal(x, y)	(!isunordered((x), (y)) && (x) <= (y))
sl@0
   170
#define	islessgreater(x, y)	(!isunordered((x), (y)) && \
sl@0
   171
					((x) > (y) || (y) > (x)))
sl@0
   172
#define	isunordered(x, y)	(isnan(x) || isnan(y))
sl@0
   173
#endif /* __MATH_BUILTIN_RELOPS */
sl@0
   174
sl@0
   175
#define	signbit(x)					\
sl@0
   176
    ((sizeof (x) == sizeof (float)) ? __signbitf(x)	\
sl@0
   177
    : (sizeof (x) == sizeof (double)) ? __signbit(x)	\
sl@0
   178
    : __signbitl(x))
sl@0
   179
sl@0
   180
typedef	__double_t	double_t;
sl@0
   181
typedef	__float_t	float_t;
sl@0
   182
#endif /* __ISO_C_VISIBLE >= 1999 */
sl@0
   183
sl@0
   184
/*
sl@0
   185
 * XOPEN/SVID
sl@0
   186
 */
sl@0
   187
#if __BSD_VISIBLE || __XSI_VISIBLE
sl@0
   188
#define	M_E		2.7182818284590452354	/* e */
sl@0
   189
#define	M_LOG2E		1.4426950408889634074	/* log 2e */
sl@0
   190
#define	M_LOG10E	0.43429448190325182765	/* log 10e */
sl@0
   191
#define	M_LN2		0.69314718055994530942	/* log e2 */
sl@0
   192
#define	M_LN10		2.30258509299404568402	/* log e10 */
sl@0
   193
#define	M_PI		3.14159265358979323846	/* pi */
sl@0
   194
#define	M_PI_2		1.57079632679489661923	/* pi/2 */
sl@0
   195
#define	M_PI_4		0.78539816339744830962	/* pi/4 */
sl@0
   196
#define	M_1_PI		0.31830988618379067154	/* 1/pi */
sl@0
   197
#define	M_2_PI		0.63661977236758134308	/* 2/pi */
sl@0
   198
#define	M_2_SQRTPI	1.12837916709551257390	/* 2/sqrt(pi) */
sl@0
   199
#define	M_SQRT2		1.41421356237309504880	/* sqrt(2) */
sl@0
   200
#define	M_SQRT1_2	0.70710678118654752440	/* 1/sqrt(2) */
sl@0
   201
sl@0
   202
#define	MAXFLOAT	((float)3.40282346638528860e+38)
sl@0
   203
#ifdef __SYMBIAN32__
sl@0
   204
#ifndef __WINSCW__
sl@0
   205
extern int _signgam;
sl@0
   206
#endif //__WINSCW__
sl@0
   207
#else
sl@0
   208
extern int signgam;
sl@0
   209
#endif //__SYMBIAN32__
sl@0
   210
#endif /* __BSD_VISIBLE || __XSI_VISIBLE */
sl@0
   211
sl@0
   212
#if __BSD_VISIBLE
sl@0
   213
#if 0
sl@0
   214
/* Old value from 4.4BSD-Lite math.h; this is probably better. */
sl@0
   215
#define	HUGE		HUGE_VAL
sl@0
   216
#else
sl@0
   217
#define	HUGE		MAXFLOAT
sl@0
   218
#endif
sl@0
   219
#endif /* __BSD_VISIBLE */
sl@0
   220
sl@0
   221
/*
sl@0
   222
 * Most of these functions depend on the rounding mode and have the side
sl@0
   223
 * effect of raising floating-point exceptions, so they are not declared
sl@0
   224
 * as __pure2.  In C99, FENV_ACCESS affects the purity of these functions.
sl@0
   225
 */
sl@0
   226
__BEGIN_DECLS
sl@0
   227
/*
sl@0
   228
 * ANSI/POSIX
sl@0
   229
 */
sl@0
   230
#ifdef __SYMBIAN32__
sl@0
   231
IMPORT_C double __infinite(double x);
sl@0
   232
IMPORT_C float  __infinitef(float x);
sl@0
   233
sl@0
   234
IMPORT_C double nanval(void );
sl@0
   235
IMPORT_C float  nanvalf(void );
sl@0
   236
#endif //__SYMBIAN32__
sl@0
   237
sl@0
   238
sl@0
   239
IMPORT_C int	__fpclassifyd(double) __pure2;
sl@0
   240
IMPORT_C int	__fpclassifyf(float) __pure2;
sl@0
   241
IMPORT_C int	__fpclassifyl(long double) __pure2;
sl@0
   242
IMPORT_C int	__isfinitef(float) __pure2;
sl@0
   243
IMPORT_C int	__isfinite(double) __pure2;
sl@0
   244
IMPORT_C int	__isfinitel(long double) __pure2;
sl@0
   245
IMPORT_C int	__isinf(double) __pure2;
sl@0
   246
IMPORT_C int	__isinff(float) __pure2;
sl@0
   247
IMPORT_C int	__isinfl(long double) __pure2;
sl@0
   248
#ifdef __SYMBIAN32__
sl@0
   249
IMPORT_C int	__isnan(double) __pure2;
sl@0
   250
IMPORT_C int	__isnanf(float) __pure2;
sl@0
   251
#endif //__SYMBIAN32__
sl@0
   252
IMPORT_C int	__isnanl(long double) __pure2;
sl@0
   253
IMPORT_C int	__isnormalf(float) __pure2;
sl@0
   254
IMPORT_C int	__isnormal(double) __pure2;
sl@0
   255
IMPORT_C int	__isnormall(long double) __pure2;
sl@0
   256
IMPORT_C int	__signbit(double) __pure2;
sl@0
   257
IMPORT_C int	__signbitf(float) __pure2;
sl@0
   258
IMPORT_C int	__signbitl(long double) __pure2;
sl@0
   259
sl@0
   260
IMPORT_C double	acos(double);
sl@0
   261
IMPORT_C double	asin(double);
sl@0
   262
IMPORT_C double	atan(double);
sl@0
   263
IMPORT_C double	atan2(double, double);
sl@0
   264
IMPORT_C double	cos(double);
sl@0
   265
IMPORT_C double	sin(double);
sl@0
   266
IMPORT_C double	tan(double);
sl@0
   267
sl@0
   268
IMPORT_C double	cosh(double);
sl@0
   269
IMPORT_C double	sinh(double);
sl@0
   270
IMPORT_C double	tanh(double);
sl@0
   271
sl@0
   272
IMPORT_C double	exp(double);
sl@0
   273
IMPORT_C double	frexp(double, int *);	/* fundamentally !__pure2 */
sl@0
   274
IMPORT_C double	ldexp(double, int);
sl@0
   275
IMPORT_C double	log(double);
sl@0
   276
IMPORT_C double	log10(double);
sl@0
   277
IMPORT_C double	modf(double, double *);	/* fundamentally !__pure2 */
sl@0
   278
sl@0
   279
IMPORT_C double	pow(double, double);
sl@0
   280
IMPORT_C double	sqrt(double);
sl@0
   281
sl@0
   282
IMPORT_C double	ceil(double);
sl@0
   283
IMPORT_C double	fabs(double) __pure2;
sl@0
   284
IMPORT_C double	floor(double);
sl@0
   285
IMPORT_C double	fmod(double, double);
sl@0
   286
sl@0
   287
/*
sl@0
   288
 * These functions are not in C90.
sl@0
   289
 */
sl@0
   290
#if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE
sl@0
   291
IMPORT_C double	acosh(double);
sl@0
   292
IMPORT_C double	asinh(double);
sl@0
   293
IMPORT_C double	atanh(double);
sl@0
   294
IMPORT_C double	cbrt(double);
sl@0
   295
IMPORT_C double	erf(double);
sl@0
   296
IMPORT_C double	erfc(double);
sl@0
   297
IMPORT_C double	exp2(double);
sl@0
   298
IMPORT_C double	expm1(double);
sl@0
   299
IMPORT_C double	fma(double, double, double);
sl@0
   300
IMPORT_C double	hypot(double, double);
sl@0
   301
sl@0
   302
sl@0
   303
IMPORT_C int	ilogb(double) __pure2;
sl@0
   304
/*
sl@0
   305
int	(isinf)(double) __pure2;
sl@0
   306
int	(isnan)(double) __pure2;
sl@0
   307
*/
sl@0
   308
IMPORT_C double	lgamma(double);
sl@0
   309
IMPORT_C long long llrint(double);
sl@0
   310
IMPORT_C long long llround(double);
sl@0
   311
IMPORT_C double	log1p(double);
sl@0
   312
IMPORT_C double	logb(double);
sl@0
   313
IMPORT_C long	lrint(double);
sl@0
   314
IMPORT_C long	lround(double);
sl@0
   315
IMPORT_C double	nextafter(double, double);
sl@0
   316
IMPORT_C double	remainder(double, double);
sl@0
   317
IMPORT_C double	remquo(double, double, int *);
sl@0
   318
IMPORT_C double	rint(double);
sl@0
   319
#endif /* __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE */
sl@0
   320
sl@0
   321
#if __BSD_VISIBLE || __XSI_VISIBLE
sl@0
   322
IMPORT_C double	j0(double);
sl@0
   323
IMPORT_C double	j1(double);
sl@0
   324
IMPORT_C double	jn(int, double);
sl@0
   325
IMPORT_C double	scalb(double, double);
sl@0
   326
IMPORT_C double	y0(double);
sl@0
   327
IMPORT_C double	y1(double);
sl@0
   328
IMPORT_C double	yn(int, double);
sl@0
   329
sl@0
   330
#if __XSI_VISIBLE <= 500 || __BSD_VISIBLE
sl@0
   331
IMPORT_C double	gamma(double);
sl@0
   332
#endif
sl@0
   333
#endif /* __BSD_VISIBLE || __XSI_VISIBLE */
sl@0
   334
sl@0
   335
#if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999
sl@0
   336
IMPORT_C double	copysign(double, double) __pure2;
sl@0
   337
IMPORT_C double	fdim(double, double);
sl@0
   338
IMPORT_C double	fmax(double, double) __pure2;
sl@0
   339
IMPORT_C double	fmin(double, double) __pure2;
sl@0
   340
IMPORT_C double	nearbyint(double);
sl@0
   341
IMPORT_C double	round(double);
sl@0
   342
IMPORT_C double	scalbln(double, long);
sl@0
   343
IMPORT_C double	scalbn(double, int);
sl@0
   344
IMPORT_C double	trunc(double);
sl@0
   345
#endif
sl@0
   346
sl@0
   347
/*
sl@0
   348
 * BSD math library entry points
sl@0
   349
 */
sl@0
   350
#if __BSD_VISIBLE
sl@0
   351
IMPORT_C double	drem(double, double);
sl@0
   352
IMPORT_C int	finite(double) __pure2;
sl@0
   353
sl@0
   354
/*
sl@0
   355
 * Reentrant version of gamma & lgamma; passes signgam back by reference
sl@0
   356
 * as the second argument; user must allocate space for signgam.
sl@0
   357
 */
sl@0
   358
IMPORT_C double	lgamma_r(double, int *);
sl@0
   359
sl@0
   360
/*
sl@0
   361
 * IEEE Test Vector
sl@0
   362
 */
sl@0
   363
IMPORT_C double	significand(double);
sl@0
   364
#endif /* __BSD_VISIBLE */
sl@0
   365
sl@0
   366
/* float versions of ANSI/POSIX functions */
sl@0
   367
#if __ISO_C_VISIBLE >= 1999
sl@0
   368
IMPORT_C float	acosf(float);
sl@0
   369
sl@0
   370
IMPORT_C float	acosf(float);
sl@0
   371
IMPORT_C float	asinf(float);
sl@0
   372
IMPORT_C float	atanf(float);
sl@0
   373
IMPORT_C float	atan2f(float, float);
sl@0
   374
IMPORT_C float	cosf(float);
sl@0
   375
IMPORT_C float	sinf(float);
sl@0
   376
IMPORT_C float	tanf(float);
sl@0
   377
sl@0
   378
IMPORT_C float	coshf(float);
sl@0
   379
IMPORT_C float	sinhf(float);
sl@0
   380
IMPORT_C float	tanhf(float);
sl@0
   381
IMPORT_C float	exp2f(float);
sl@0
   382
IMPORT_C float	expf(float);
sl@0
   383
IMPORT_C float	expm1f(float);
sl@0
   384
IMPORT_C float	frexpf(float, int *);	/* fundamentally !__pure2 */
sl@0
   385
IMPORT_C int	ilogbf(float) __pure2;
sl@0
   386
#ifndef __SYMBIAN32__
sl@0
   387
float	ldexpf(float, int);
sl@0
   388
#endif //__SYMBIAN32__
sl@0
   389
IMPORT_C float	log10f(float);
sl@0
   390
IMPORT_C float	log1pf(float);
sl@0
   391
IMPORT_C float	logf(float);
sl@0
   392
IMPORT_C float	modff(float, float *);	/* fundamentally !__pure2 */
sl@0
   393
sl@0
   394
IMPORT_C float	powf(float, float);
sl@0
   395
IMPORT_C float	sqrtf(float);
sl@0
   396
sl@0
   397
IMPORT_C float	ceilf(float);
sl@0
   398
IMPORT_C float	fabsf(float) __pure2;
sl@0
   399
IMPORT_C float	floorf(float);
sl@0
   400
IMPORT_C float	fmodf(float, float);
sl@0
   401
IMPORT_C float	roundf(float);
sl@0
   402
sl@0
   403
IMPORT_C float	erff(float);
sl@0
   404
IMPORT_C float	erfcf(float);
sl@0
   405
IMPORT_C float	hypotf(float, float);
sl@0
   406
IMPORT_C float	lgammaf(float);
sl@0
   407
sl@0
   408
IMPORT_C float	acoshf(float);
sl@0
   409
IMPORT_C float	asinhf(float);
sl@0
   410
IMPORT_C float	atanhf(float);
sl@0
   411
IMPORT_C float	cbrtf(float);
sl@0
   412
IMPORT_C float	logbf(float);
sl@0
   413
IMPORT_C float	copysignf(float, float) __pure2;
sl@0
   414
IMPORT_C long long llrintf(float);
sl@0
   415
IMPORT_C long long llroundf(float);
sl@0
   416
IMPORT_C long	lrintf(float);
sl@0
   417
IMPORT_C long	lroundf(float);
sl@0
   418
IMPORT_C float	nearbyintf(float);
sl@0
   419
IMPORT_C float	nextafterf(float, float);
sl@0
   420
IMPORT_C float	remainderf(float, float);
sl@0
   421
IMPORT_C float	remquof(float, float, int *);
sl@0
   422
IMPORT_C float	rintf(float);
sl@0
   423
IMPORT_C float	scalblnf(float, long);
sl@0
   424
IMPORT_C float	scalbnf(float, int);
sl@0
   425
IMPORT_C float	truncf(float);
sl@0
   426
sl@0
   427
IMPORT_C float	fdimf(float, float);
sl@0
   428
IMPORT_C float	fmaf(float, float, float);
sl@0
   429
IMPORT_C float	fmaxf(float, float) __pure2;
sl@0
   430
IMPORT_C float	fminf(float, float) __pure2;
sl@0
   431
#endif
sl@0
   432
sl@0
   433
/*
sl@0
   434
 * float versions of BSD math library entry points
sl@0
   435
 */
sl@0
   436
#if __BSD_VISIBLE
sl@0
   437
sl@0
   438
#ifdef __SYMBIAN_COMPILE_UNUSED__
sl@0
   439
float	dremf(float, float);
sl@0
   440
#endif
sl@0
   441
sl@0
   442
IMPORT_C int	finitef(float) __pure2;
sl@0
   443
IMPORT_C float	gammaf(float);
sl@0
   444
IMPORT_C float	j0f(float);
sl@0
   445
IMPORT_C float	j1f(float);
sl@0
   446
IMPORT_C float	jnf(int, float);
sl@0
   447
IMPORT_C float	scalbf(float, float);
sl@0
   448
IMPORT_C float	y0f(float);
sl@0
   449
IMPORT_C float	y1f(float);
sl@0
   450
IMPORT_C float	ynf(int, float);
sl@0
   451
sl@0
   452
/*
sl@0
   453
 * Float versions of reentrant version of gamma & lgamma; passes
sl@0
   454
 * signgam back by reference as the second argument; user must
sl@0
   455
 * allocate space for signgam.
sl@0
   456
 */
sl@0
   457
IMPORT_C float	lgammaf_r(float, int *);
sl@0
   458
sl@0
   459
/*
sl@0
   460
 * float version of IEEE Test Vector
sl@0
   461
 */
sl@0
   462
IMPORT_C float	significandf(float);
sl@0
   463
#endif	/* __BSD_VISIBLE */
sl@0
   464
sl@0
   465
/*
sl@0
   466
 * long double versions of ISO/POSIX math functions
sl@0
   467
 */
sl@0
   468
#if __ISO_C_VISIBLE >= 1999
sl@0
   469
#if 0
sl@0
   470
long double	acoshl(long double);
sl@0
   471
long double	acosl(long double);
sl@0
   472
long double	asinhl(long double);
sl@0
   473
long double	asinl(long double);
sl@0
   474
long double	atan2l(long double, long double);
sl@0
   475
long double	atanhl(long double);
sl@0
   476
long double	atanl(long double);
sl@0
   477
long double	cbrtl(long double);
sl@0
   478
#endif
sl@0
   479
#ifndef __SYMBIAN32__
sl@0
   480
long double	ceill(long double);
sl@0
   481
#endif //__SYMBIAN32__
sl@0
   482
IMPORT_C long double	copysignl(long double, long double) __pure2;
sl@0
   483
#if 0
sl@0
   484
long double	coshl(long double);
sl@0
   485
long double	cosl(long double);
sl@0
   486
long double	erfcl(long double);
sl@0
   487
long double	erfl(long double);
sl@0
   488
long double	exp2l(long double);
sl@0
   489
long double	expl(long double);
sl@0
   490
long double	expm1l(long double);
sl@0
   491
#endif
sl@0
   492
IMPORT_C long double	fabsl(long double) __pure2;
sl@0
   493
IMPORT_C long double	fdiml(long double, long double);
sl@0
   494
#ifndef __SYMBIAN32__
sl@0
   495
long double	floorl(long double);
sl@0
   496
long double	fmal(long double, long double, long double);
sl@0
   497
#endif //__SYMBIAN32__
sl@0
   498
IMPORT_C long double	fmaxl(long double, long double) __pure2;
sl@0
   499
#ifndef __SYMBIAN32__
sl@0
   500
long double	fminl(long double, long double) __pure2;
sl@0
   501
#endif //__SYMBIAN32__
sl@0
   502
#if 0
sl@0
   503
long double	fmodl(long double, long double);
sl@0
   504
#endif
sl@0
   505
#ifndef __SYMBIAN32__
sl@0
   506
long double	frexpl(long double value, int *); /* fundamentally !__pure2 */
sl@0
   507
#endif //__SYMBIAN32__
sl@0
   508
#if 0
sl@0
   509
long double	hypotl(long double, long double);
sl@0
   510
#endif
sl@0
   511
IMPORT_C int		ilogbl(long double) __pure2;
sl@0
   512
#ifndef __SYMBIAN32__
sl@0
   513
long double	ldexpl(long double, int);
sl@0
   514
#endif //__SYMBIAN32__
sl@0
   515
#if 0
sl@0
   516
long double	lgammal(long double);
sl@0
   517
long long	llrintl(long double);
sl@0
   518
#endif
sl@0
   519
#ifndef __SYMBIAN32__
sl@0
   520
long long	llroundl(long double);
sl@0
   521
#endif //__SYMBIAN32__
sl@0
   522
#if 0
sl@0
   523
long double	log10l(long double);
sl@0
   524
long double	log1pl(long double);
sl@0
   525
long double	log2l(long double);
sl@0
   526
long double	logbl(long double);
sl@0
   527
long double	logl(long double);
sl@0
   528
long		lrintl(long double);
sl@0
   529
#endif
sl@0
   530
#ifndef __SYMBIAN32__
sl@0
   531
long		lroundl(long double);
sl@0
   532
#endif //__SYMBIAN32__
sl@0
   533
#if 0
sl@0
   534
long double	modfl(long double, long double *); /* fundamentally !__pure2 */
sl@0
   535
long double	nanl(const char *) __pure2;
sl@0
   536
long double	nearbyintl(long double);
sl@0
   537
#endif
sl@0
   538
#ifndef __SYMBIAN32__
sl@0
   539
long double	nextafterl(long double, long double);
sl@0
   540
double		nexttoward(double, long double);
sl@0
   541
#endif //__SYMBIAN32__
sl@0
   542
IMPORT_C float		nexttowardf(float, long double);
sl@0
   543
#ifndef __SYMBIAN32__
sl@0
   544
long double	nexttowardl(long double, long double);
sl@0
   545
#endif //__SYMBIAN32__
sl@0
   546
#if 0
sl@0
   547
long double	powl(long double, long double);
sl@0
   548
long double	remainderl(long double, long double);
sl@0
   549
long double	remquol(long double, long double, int *);
sl@0
   550
long double	rintl(long double);
sl@0
   551
#endif
sl@0
   552
#ifndef __SYMBIAN32__
sl@0
   553
long double	roundl(long double);
sl@0
   554
#endif //__SYMBIAN32__
sl@0
   555
IMPORT_C long double	scalblnl(long double, long);
sl@0
   556
#ifndef __SYMBIAN32__
sl@0
   557
long double	scalbnl(long double, int);
sl@0
   558
#endif //__SYMBIAN32__
sl@0
   559
#if 0
sl@0
   560
long double	sinhl(long double);
sl@0
   561
long double	sinl(long double);
sl@0
   562
long double	sqrtl(long double);
sl@0
   563
long double	tanhl(long double);
sl@0
   564
long double	tanl(long double);
sl@0
   565
#endif
sl@0
   566
IMPORT_C long double	truncl(long double);
sl@0
   567
sl@0
   568
#endif /* __ISO_C_VISIBLE >= 1999 */
sl@0
   569
__END_DECLS
sl@0
   570
sl@0
   571
#endif /* !_MATH_H_ */