blob: 8b7f2cf27d887eb8738b630ed6f7cd87e0c91a65 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===---------------------------- cmath -----------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_CMATH
12#define _LIBCPP_CMATH
13
14/*
15 cmath synopsis
16
17Macros:
18
19 HUGE_VAL
20 HUGE_VALF // C99
21 HUGE_VALL // C99
22 INFINITY // C99
23 NAN // C99
24 FP_INFINITE // C99
25 FP_NAN // C99
26 FP_NORMAL // C99
27 FP_SUBNORMAL // C99
28 FP_ZERO // C99
29 FP_FAST_FMA // C99
30 FP_FAST_FMAF // C99
31 FP_FAST_FMAL // C99
32 FP_ILOGB0 // C99
33 FP_ILOGBNAN // C99
34 MATH_ERRNO // C99
35 MATH_ERREXCEPT // C99
36 math_errhandling // C99
37
38namespace std
39{
40
41Types:
42
43 float_t // C99
44 double_t // C99
45
46// C90
47
48floating_point abs(floating_point x);
49
50floating_point acos (arithmetic x);
51float acosf(float x);
52long double acosl(long double x);
53
54floating_point asin (arithmetic x);
55float asinf(float x);
56long double asinl(long double x);
57
58floating_point atan (arithmetic x);
59float atanf(float x);
60long double atanl(long double x);
61
62floating_point atan2 (arithmetic y, arithmetic x);
63float atan2f(float y, float x);
64long double atan2l(long double y, long double x);
65
66floating_point ceil (arithmetic x);
67float ceilf(float x);
68long double ceill(long double x);
69
70floating_point cos (arithmetic x);
71float cosf(float x);
72long double cosl(long double x);
73
74floating_point cosh (arithmetic x);
75float coshf(float x);
76long double coshl(long double x);
77
78floating_point exp (arithmetic x);
79float expf(float x);
80long double expl(long double x);
81
82floating_point fabs (arithmetic x);
83float fabsf(float x);
84long double fabsl(long double x);
85
86floating_point floor (arithmetic x);
87float floorf(float x);
88long double floorl(long double x);
89
90floating_point fmod (arithmetic x, arithmetic y);
91float fmodf(float x, float y);
92long double fmodl(long double x, long double y);
93
94floating_point frexp (arithmetic value, int* exp);
95float frexpf(float value, int* exp);
96long double frexpl(long double value, int* exp);
97
98floating_point ldexp (arithmetic value, int exp);
99float ldexpf(float value, int exp);
100long double ldexpl(long double value, int exp);
101
102floating_point log (arithmetic x);
103float logf(float x);
104long double logl(long double x);
105
106floating_point log10 (arithmetic x);
107float log10f(float x);
108long double log10l(long double x);
109
110floating_point modf (floating_point value, floating_point* iptr);
111float modff(float value, float* iptr);
112long double modfl(long double value, long double* iptr);
113
114floating_point pow (arithmetic x, arithmetic y);
115float powf(float x, float y);
116long double powl(long double x, long double y);
117
118floating_point sin (arithmetic x);
119float sinf(float x);
120long double sinl(long double x);
121
122floating_point sinh (arithmetic x);
123float sinhf(float x);
124long double sinhl(long double x);
125
126floating_point sqrt (arithmetic x);
127float sqrtf(float x);
128long double sqrtl(long double x);
129
130floating_point tan (arithmetic x);
131float tanf(float x);
132long double tanl(long double x);
133
134floating_point tanh (arithmetic x);
135float tanhf(float x);
136long double tanhl(long double x);
137
138// C99
139
140bool signbit(floating_point x);
141
142int fpclassify(floating_point x);
143
Howard Hinnant324bb032010-08-22 00:02:43 +0000144bool isfinite(floating_point x);
145bool isinf(floating_point x);
146bool isnan(floating_point x);
147bool isnormal(floating_point x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000148
Howard Hinnant324bb032010-08-22 00:02:43 +0000149bool isgreater(floating_point x, floating_point y);
150bool isgreaterequal(floating_point x, floating_point y);
151bool isless(floating_point x, floating_point y);
152bool islessequal(floating_point x, floating_point y);
153bool islessgreater(floating_point x, floating_point y);
154bool isunordered(floating_point x, floating_point y);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000155
156floating_point acosh (arithmetic x);
157float acoshf(float x);
158long double acoshl(long double x);
159
160floating_point asinh (arithmetic x);
161float asinhf(float x);
162long double asinhl(long double x);
163
164floating_point atanh (arithmetic x);
165float atanhf(float x);
166long double atanhl(long double x);
167
168floating_point cbrt (arithmetic x);
169float cbrtf(float x);
170long double cbrtl(long double x);
171
172floating_point copysign (arithmetic x, arithmetic y);
173float copysignf(float x, float y);
174long double copysignl(long double x, long double y);
175
176floating_point erf (arithmetic x);
177float erff(float x);
178long double erfl(long double x);
179
180floating_point erfc (arithmetic x);
181float erfcf(float x);
182long double erfcl(long double x);
183
184floating_point exp2 (arithmetic x);
185float exp2f(float x);
186long double exp2l(long double x);
187
188floating_point expm1 (arithmetic x);
189float expm1f(float x);
190long double expm1l(long double x);
191
192floating_point fdim (arithmetic x, arithmetic y);
193float fdimf(float x, float y);
194long double fdiml(long double x, long double y);
195
196floating_point fma (arithmetic x, arithmetic y, arithmetic z);
197float fmaf(float x, float y, float z);
198long double fmal(long double x, long double y, long double z);
199
200floating_point fmax (arithmetic x, arithmetic y);
201float fmaxf(float x, float y);
202long double fmaxl(long double x, long double y);
203
204floating_point fmin (arithmetic x, arithmetic y);
205float fminf(float x, float y);
206long double fminl(long double x, long double y);
207
208floating_point hypot (arithmetic x, arithmetic y);
209float hypotf(float x, float y);
210long double hypotl(long double x, long double y);
211
212int ilogb (arithmetic x);
213int ilogbf(float x);
214int ilogbl(long double x);
215
216floating_point lgamma (arithmetic x);
217float lgammaf(float x);
218long double lgammal(long double x);
219
220long long llrint (arithmetic x);
221long long llrintf(float x);
222long long llrintl(long double x);
223
224long long llround (arithmetic x);
225long long llroundf(float x);
226long long llroundl(long double x);
227
228floating_point log1p (arithmetic x);
229float log1pf(float x);
230long double log1pl(long double x);
231
232floating_point log2 (arithmetic x);
233float log2f(float x);
234long double log2l(long double x);
235
236floating_point logb (arithmetic x);
237float logbf(float x);
238long double logbl(long double x);
239
240long lrint (arithmetic x);
241long lrintf(float x);
242long lrintl(long double x);
243
244long lround (arithmetic x);
245long lroundf(float x);
246long lroundl(long double x);
247
248double nan (const char* str);
249float nanf(const char* str);
250long double nanl(const char* str);
251
252floating_point nearbyint (arithmetic x);
253float nearbyintf(float x);
254long double nearbyintl(long double x);
255
256floating_point nextafter (arithmetic x, arithmetic y);
257float nextafterf(float x, float y);
258long double nextafterl(long double x, long double y);
259
260floating_point nexttoward (arithmetic x, long double y);
261float nexttowardf(float x, long double y);
262long double nexttowardl(long double x, long double y);
263
264floating_point remainder (arithmetic x, arithmetic y);
265float remainderf(float x, float y);
266long double remainderl(long double x, long double y);
267
268floating_point remquo (arithmetic x, arithmetic y, int* pquo);
269float remquof(float x, float y, int* pquo);
270long double remquol(long double x, long double y, int* pquo);
271
272floating_point rint (arithmetic x);
273float rintf(float x);
274long double rintl(long double x);
275
276floating_point round (arithmetic x);
277float roundf(float x);
278long double roundl(long double x);
279
280floating_point scalbln (arithmetic x, long ex);
281float scalblnf(float x, long ex);
282long double scalblnl(long double x, long ex);
283
284floating_point scalbn (arithmetic x, int ex);
285float scalbnf(float x, int ex);
286long double scalbnl(long double x, int ex);
287
288floating_point tgamma (arithmetic x);
289float tgammaf(float x);
290long double tgammal(long double x);
291
292floating_point trunc (arithmetic x);
293float truncf(float x);
294long double truncl(long double x);
295
296} // std
297
298*/
299
Howard Hinnant324bb032010-08-22 00:02:43 +0000300// FIXME: work around for Clang with -std=C++0x on OSX/iOS
Howard Hinnant60a0a8e2010-08-10 20:48:29 +0000301#if defined(__clang__) && defined(__APPLE__)
302# pragma push_macro("__STRICT_ANSI__")
303# undef __STRICT_ANSI__
Howard Hinnant324bb032010-08-22 00:02:43 +0000304#endif // defined(__clang__) && defined(__APPLE__)
Howard Hinnant60a0a8e2010-08-10 20:48:29 +0000305
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000306#include <__config>
307#include <math.h>
308#include <type_traits>
309
310#pragma GCC system_header
311
312_LIBCPP_BEGIN_NAMESPACE_STD
313
314using ::float_t;
315using ::double_t;
316
317// abs
318
319template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000320inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000321typename enable_if<is_floating_point<_A1>::value, _A1>::type
322abs(_A1 __x) {return fabs(__x);}
323
324// acos
325
326using ::acos;
327using ::acosf;
328
329inline _LIBCPP_INLINE_VISIBILITY float acos(float __x) {return acosf(__x);}
330inline _LIBCPP_INLINE_VISIBILITY long double acos(long double __x) {return acosl(__x);}
331
332template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000333inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000334typename enable_if<is_integral<_A1>::value, double>::type
335acos(_A1 __x) {return acos((double)__x);}
336
337// asin
338
339using ::asin;
340using ::asinf;
341
342inline _LIBCPP_INLINE_VISIBILITY float asin(float __x) {return asinf(__x);}
343inline _LIBCPP_INLINE_VISIBILITY long double asin(long double __x) {return asinl(__x);}
344
345template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000346inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000347typename enable_if<is_integral<_A1>::value, double>::type
348asin(_A1 __x) {return asin((double)__x);}
349
350// atan
351
352using ::atan;
353using ::atanf;
354
355inline _LIBCPP_INLINE_VISIBILITY float atan(float __x) {return atanf(__x);}
356inline _LIBCPP_INLINE_VISIBILITY long double atan(long double __x) {return atanl(__x);}
357
358template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000359inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000360typename enable_if<is_integral<_A1>::value, double>::type
361atan(_A1 __x) {return atan((double)__x);}
362
363// atan2
364
365using ::atan2;
366using ::atan2f;
367
368inline _LIBCPP_INLINE_VISIBILITY float atan2(float __y, float __x) {return atan2f(__y, __x);}
369inline _LIBCPP_INLINE_VISIBILITY long double atan2(long double __y, long double __x) {return atan2l(__y, __x);}
370
371template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000372inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000373typename enable_if
374<
375 is_arithmetic<_A1>::value &&
376 is_arithmetic<_A2>::value,
377 typename __promote<_A1, _A2>::type
378>::type
379atan2(_A1 __y, _A2 __x)
380{
381 typedef typename __promote<_A1, _A2>::type __result_type;
382 static_assert((!(is_same<_A1, __result_type>::value &&
383 is_same<_A2, __result_type>::value)), "");
384 return atan2((__result_type)__y, (__result_type)__x);
385}
386
387// ceil
388
389using ::ceil;
390using ::ceilf;
391
392inline _LIBCPP_INLINE_VISIBILITY float ceil(float __x) {return ceilf(__x);}
393inline _LIBCPP_INLINE_VISIBILITY long double ceil(long double __x) {return ceill(__x);}
394
395template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000396inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000397typename enable_if<is_integral<_A1>::value, double>::type
398ceil(_A1 __x) {return ceil((double)__x);}
399
400// cos
401
402using ::cos;
403using ::cosf;
404
405inline _LIBCPP_INLINE_VISIBILITY float cos(float __x) {return cosf(__x);}
406inline _LIBCPP_INLINE_VISIBILITY long double cos(long double __x) {return cosl(__x);}
407
408template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000409inline _LIBCPP_ALWAYS_INLINE _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000410typename enable_if<is_integral<_A1>::value, double>::type
411cos(_A1 __x) {return cos((double)__x);}
412
413// cosh
414
415using ::cosh;
416using ::coshf;
417
418inline _LIBCPP_INLINE_VISIBILITY float cosh(float __x) {return coshf(__x);}
419inline _LIBCPP_INLINE_VISIBILITY long double cosh(long double __x) {return coshl(__x);}
420
421template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000422inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000423typename enable_if<is_integral<_A1>::value, double>::type
424cosh(_A1 __x) {return cosh((double)__x);}
425
426// exp
427
428using ::exp;
429using ::expf;
430
431inline _LIBCPP_INLINE_VISIBILITY float exp(float __x) {return expf(__x);}
432inline _LIBCPP_INLINE_VISIBILITY long double exp(long double __x) {return expl(__x);}
433
434template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000435inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000436typename enable_if<is_integral<_A1>::value, double>::type
437exp(_A1 __x) {return exp((double)__x);}
438
439// fabs
440
441using ::fabs;
442using ::fabsf;
443
444inline _LIBCPP_INLINE_VISIBILITY float fabs(float __x) {return fabsf(__x);}
445inline _LIBCPP_INLINE_VISIBILITY long double fabs(long double __x) {return fabsl(__x);}
446
447template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000448inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000449typename enable_if<is_integral<_A1>::value, double>::type
450fabs(_A1 __x) {return fabs((double)__x);}
451
452// floor
453
454using ::floor;
455using ::floorf;
456
457inline _LIBCPP_INLINE_VISIBILITY float floor(float __x) {return floorf(__x);}
458inline _LIBCPP_INLINE_VISIBILITY long double floor(long double __x) {return floorl(__x);}
459
460template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000461inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000462typename enable_if<is_integral<_A1>::value, double>::type
463floor(_A1 __x) {return floor((double)__x);}
464
465// fmod
466
467using ::fmod;
468using ::fmodf;
469
470inline _LIBCPP_INLINE_VISIBILITY float fmod(float __x, float __y) {return fmodf(__x, __y);}
471inline _LIBCPP_INLINE_VISIBILITY long double fmod(long double __x, long double __y) {return fmodl(__x, __y);}
472
473template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000474inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000475typename enable_if
476<
477 is_arithmetic<_A1>::value &&
478 is_arithmetic<_A2>::value,
479 typename __promote<_A1, _A2>::type
480>::type
481fmod(_A1 __x, _A2 __y)
482{
483 typedef typename __promote<_A1, _A2>::type __result_type;
484 static_assert((!(is_same<_A1, __result_type>::value &&
485 is_same<_A2, __result_type>::value)), "");
486 return fmod((__result_type)__x, (__result_type)__y);
487}
488
489// frexp
490
491using ::frexp;
492using ::frexpf;
493
494inline _LIBCPP_INLINE_VISIBILITY float frexp(float __x, int* __e) {return frexpf(__x, __e);}
495inline _LIBCPP_INLINE_VISIBILITY long double frexp(long double __x, int* __e) {return frexpl(__x, __e);}
496
497template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000498inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000499typename enable_if<is_integral<_A1>::value, double>::type
500frexp(_A1 __x, int* __e) {return frexp((double)__x, __e);}
501
502// ldexp
503
504using ::ldexp;
505using ::ldexpf;
506
507inline _LIBCPP_INLINE_VISIBILITY float ldexp(float __x, int __e) {return ldexpf(__x, __e);}
508inline _LIBCPP_INLINE_VISIBILITY long double ldexp(long double __x, int __e) {return ldexpl(__x, __e);}
509
510template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000511inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000512typename enable_if<is_integral<_A1>::value, double>::type
513ldexp(_A1 __x, int __e) {return ldexp((double)__x, __e);}
514
515// log
516
517using ::log;
518using ::logf;
519
520inline _LIBCPP_INLINE_VISIBILITY float log(float __x) {return logf(__x);}
521inline _LIBCPP_INLINE_VISIBILITY long double log(long double __x) {return logl(__x);}
522
523template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000524inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000525typename enable_if<is_integral<_A1>::value, double>::type
526log(_A1 __x) {return log((double)__x);}
527
528// log10
529
530using ::log10;
531using ::log10f;
532
533inline _LIBCPP_INLINE_VISIBILITY float log10(float __x) {return log10f(__x);}
534inline _LIBCPP_INLINE_VISIBILITY long double log10(long double __x) {return log10l(__x);}
535
536template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000537inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000538typename enable_if<is_integral<_A1>::value, double>::type
539log10(_A1 __x) {return log10((double)__x);}
540
541// modf
542
543using ::modf;
544using ::modff;
545
546inline _LIBCPP_INLINE_VISIBILITY float modf(float __x, float* __y) {return modff(__x, __y);}
547inline _LIBCPP_INLINE_VISIBILITY long double modf(long double __x, long double* __y) {return modfl(__x, __y);}
548
549// pow
550
551using ::pow;
552using ::powf;
553
554inline _LIBCPP_INLINE_VISIBILITY float pow(float __x, float __y) {return powf(__x, __y);}
555inline _LIBCPP_INLINE_VISIBILITY long double pow(long double __x, long double __y) {return powl(__x, __y);}
556
557template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000558inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000559typename enable_if
560<
561 is_arithmetic<_A1>::value &&
562 is_arithmetic<_A2>::value,
563 typename __promote<_A1, _A2>::type
564>::type
565pow(_A1 __x, _A2 __y)
566{
567 typedef typename __promote<_A1, _A2>::type __result_type;
568 static_assert((!(is_same<_A1, __result_type>::value &&
569 is_same<_A2, __result_type>::value)), "");
570 return pow((__result_type)__x, (__result_type)__y);
571}
572
573// sin
574
575using ::sin;
576using ::sinf;
577
578inline _LIBCPP_INLINE_VISIBILITY float sin(float __x) {return sinf(__x);}
579inline _LIBCPP_INLINE_VISIBILITY long double sin(long double __x) {return sinl(__x);}
580
581template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000582inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000583typename enable_if<is_integral<_A1>::value, double>::type
584sin(_A1 __x) {return sin((double)__x);}
585
586// sinh
587
588using ::sinh;
589using ::sinhf;
590
591inline _LIBCPP_INLINE_VISIBILITY float sinh(float __x) {return sinhf(__x);}
592inline _LIBCPP_INLINE_VISIBILITY long double sinh(long double __x) {return sinhl(__x);}
593
594template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000595inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000596typename enable_if<is_integral<_A1>::value, double>::type
597sinh(_A1 __x) {return sinh((double)__x);}
598
599// sqrt
600
601using ::sqrt;
602using ::sqrtf;
603
604inline _LIBCPP_INLINE_VISIBILITY float sqrt(float __x) {return sqrtf(__x);}
605inline _LIBCPP_INLINE_VISIBILITY long double sqrt(long double __x) {return sqrtl(__x);}
606
607template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000608inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000609typename enable_if<is_integral<_A1>::value, double>::type
610sqrt(_A1 __x) {return sqrt((double)__x);}
611
612// tan
613
614using ::tan;
615using ::tanf;
616
617inline _LIBCPP_INLINE_VISIBILITY float tan(float __x) {return tanf(__x);}
618inline _LIBCPP_INLINE_VISIBILITY long double tan(long double __x) {return tanl(__x);}
619
620template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000621inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000622typename enable_if<is_integral<_A1>::value, double>::type
623tan(_A1 __x) {return tan((double)__x);}
624
625// tanh
626
627using ::tanh;
628using ::tanhf;
629
630inline _LIBCPP_INLINE_VISIBILITY float tanh(float __x) {return tanhf(__x);}
631inline _LIBCPP_INLINE_VISIBILITY long double tanh(long double __x) {return tanhl(__x);}
632
633template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000634inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000635typename enable_if<is_integral<_A1>::value, double>::type
636tanh(_A1 __x) {return tanh((double)__x);}
637
638// signbit
639
640#ifndef signbit
641#error Implementation error: signbit not defined
642#else
643
644template <class _A1>
645_LIBCPP_ALWAYS_INLINE
646bool
647__libcpp_signbit(_A1 __x)
648{
649 return signbit(__x);
650}
651
652#undef signbit
653
654template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000655inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000656typename enable_if<is_floating_point<_A1>::value, bool>::type
657signbit(_A1 __x)
658{
659 return __libcpp_signbit(__x);
660}
661
662#endif // signbit
663
664// fpclassify
665
666#ifndef fpclassify
667#error Implementation error: fpclassify not defined
668#else
669
670template <class _A1>
671_LIBCPP_ALWAYS_INLINE
672int
673__libcpp_fpclassify(_A1 __x)
674{
675 return fpclassify(__x);
676}
677
678#undef fpclassify
679
680template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000681inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000682typename enable_if<is_floating_point<_A1>::value, int>::type
683fpclassify(_A1 __x)
684{
685 return __libcpp_fpclassify(__x);
686}
687
688#endif // fpclassify
689
690// isfinite
691
692#ifndef isfinite
693#error Implementation error: isfinite not defined
694#else
695
696template <class _A1>
697_LIBCPP_ALWAYS_INLINE
698bool
699__libcpp_isfinite(_A1 __x)
700{
701 return isfinite(__x);
702}
703
704#undef isfinite
705
706template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000707inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000708typename enable_if<is_floating_point<_A1>::value, bool>::type
709isfinite(_A1 __x)
710{
711 return __libcpp_isfinite(__x);
712}
713
714#endif // isfinite
715
716// isinf
717
718#ifndef isinf
719#error Implementation error: isinf not defined
720#else
721
722template <class _A1>
723_LIBCPP_ALWAYS_INLINE
724bool
725__libcpp_isinf(_A1 __x)
726{
727 return isinf(__x);
728}
729
730#undef isinf
731
732template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000733inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000734typename enable_if<is_floating_point<_A1>::value, bool>::type
735isinf(_A1 __x)
736{
737 return __libcpp_isinf(__x);
738}
739
740#endif // isinf
741
742// isnan
743
744#ifndef isnan
745#error Implementation error: isnan not defined
746#else
747
748template <class _A1>
749_LIBCPP_ALWAYS_INLINE
750bool
751__libcpp_isnan(_A1 __x)
752{
753 return isnan(__x);
754}
755
756#undef isnan
757
758template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000759inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000760typename enable_if<is_floating_point<_A1>::value, bool>::type
761isnan(_A1 __x)
762{
763 return __libcpp_isnan(__x);
764}
765
766#endif // isnan
767
768// isnormal
769
770#ifndef isnormal
771#error Implementation error: isnormal not defined
772#else
773
774template <class _A1>
775_LIBCPP_ALWAYS_INLINE
776bool
777__libcpp_isnormal(_A1 __x)
778{
779 return isnormal(__x);
780}
781
782#undef isnormal
783
784template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000785inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000786typename enable_if<is_floating_point<_A1>::value, bool>::type
787isnormal(_A1 __x)
788{
789 return __libcpp_isnormal(__x);
790}
791
792#endif // isnormal
793
794// isgreater
795
796#ifndef isgreater
797#error Implementation error: isgreater not defined
798#else
799
800template <class _A1, class _A2>
801_LIBCPP_ALWAYS_INLINE
802bool
803__libcpp_isgreater(_A1 __x, _A2 __y)
804{
805 return isgreater(__x, __y);
806}
807
808#undef isgreater
809
810template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000811inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000812typename enable_if
813<
814 is_floating_point<_A1>::value &&
815 is_floating_point<_A2>::value,
816 bool
817>::type
818isgreater(_A1 __x, _A2 __y)
819{
820 return __libcpp_isgreater(__x, __y);
821}
822
823#endif // isgreater
824
825// isgreaterequal
826
827#ifndef isgreaterequal
828#error Implementation error: isgreaterequal not defined
829#else
830
831template <class _A1, class _A2>
832_LIBCPP_ALWAYS_INLINE
833bool
834__libcpp_isgreaterequal(_A1 __x, _A2 __y)
835{
836 return isgreaterequal(__x, __y);
837}
838
839#undef isgreaterequal
840
841template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000842inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000843typename enable_if
844<
845 is_floating_point<_A1>::value &&
846 is_floating_point<_A2>::value,
847 bool
848>::type
849isgreaterequal(_A1 __x, _A2 __y)
850{
851 return __libcpp_isgreaterequal(__x, __y);
852}
853
854#endif // isgreaterequal
855
856// isless
857
858#ifndef isless
859#error Implementation error: isless not defined
860#else
861
862template <class _A1, class _A2>
863_LIBCPP_ALWAYS_INLINE
864bool
865__libcpp_isless(_A1 __x, _A2 __y)
866{
867 return isless(__x, __y);
868}
869
870#undef isless
871
872template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000873inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000874typename enable_if
875<
876 is_floating_point<_A1>::value &&
877 is_floating_point<_A2>::value,
878 bool
879>::type
880isless(_A1 __x, _A2 __y)
881{
882 return __libcpp_isless(__x, __y);
883}
884
885#endif // isless
886
887// islessequal
888
889#ifndef islessequal
890#error Implementation error: islessequal not defined
891#else
892
893template <class _A1, class _A2>
894_LIBCPP_ALWAYS_INLINE
895bool
896__libcpp_islessequal(_A1 __x, _A2 __y)
897{
898 return islessequal(__x, __y);
899}
900
901#undef islessequal
902
903template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000904inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000905typename enable_if
906<
907 is_floating_point<_A1>::value &&
908 is_floating_point<_A2>::value,
909 bool
910>::type
911islessequal(_A1 __x, _A2 __y)
912{
913 return __libcpp_islessequal(__x, __y);
914}
915
916#endif // islessequal
917
918// islessgreater
919
920#ifndef islessgreater
921#error Implementation error: islessgreater not defined
922#else
923
924template <class _A1, class _A2>
925_LIBCPP_ALWAYS_INLINE
926bool
927__libcpp_islessgreater(_A1 __x, _A2 __y)
928{
929 return islessgreater(__x, __y);
930}
931
932#undef islessgreater
933
934template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000935inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000936typename enable_if
937<
938 is_floating_point<_A1>::value &&
939 is_floating_point<_A2>::value,
940 bool
941>::type
942islessgreater(_A1 __x, _A2 __y)
943{
944 return __libcpp_islessgreater(__x, __y);
945}
946
947#endif // islessgreater
948
949// isunordered
950
951#ifndef isunordered
952#error Implementation error: isunordered not defined
953#else
954
955template <class _A1, class _A2>
956_LIBCPP_ALWAYS_INLINE
957bool
958__libcpp_isunordered(_A1 __x, _A2 __y)
959{
960 return isunordered(__x, __y);
961}
962
963#undef isunordered
964
965template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000966inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000967typename enable_if
968<
969 is_floating_point<_A1>::value &&
970 is_floating_point<_A2>::value,
971 bool
972>::type
973isunordered(_A1 __x, _A2 __y)
974{
975 return __libcpp_isunordered(__x, __y);
976}
977
978#endif // isunordered
979
980// acosh
981
982using ::acosh;
983using ::acoshf;
984
985inline _LIBCPP_INLINE_VISIBILITY float acosh(float __x) {return acoshf(__x);}
986inline _LIBCPP_INLINE_VISIBILITY long double acosh(long double __x) {return acoshl(__x);}
987
988template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000989inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000990typename enable_if<is_integral<_A1>::value, double>::type
991acosh(_A1 __x) {return acosh((double)__x);}
992
993// asinh
994
995using ::asinh;
996using ::asinhf;
997
998inline _LIBCPP_INLINE_VISIBILITY float asinh(float __x) {return asinhf(__x);}
999inline _LIBCPP_INLINE_VISIBILITY long double asinh(long double __x) {return asinhl(__x);}
1000
1001template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001002inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001003typename enable_if<is_integral<_A1>::value, double>::type
1004asinh(_A1 __x) {return asinh((double)__x);}
1005
1006// atanh
1007
1008using ::atanh;
1009using ::atanhf;
1010
1011inline _LIBCPP_INLINE_VISIBILITY float atanh(float __x) {return atanhf(__x);}
1012inline _LIBCPP_INLINE_VISIBILITY long double atanh(long double __x) {return atanhl(__x);}
1013
1014template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001015inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001016typename enable_if<is_integral<_A1>::value, double>::type
1017atanh(_A1 __x) {return atanh((double)__x);}
1018
1019// cbrt
1020
1021using ::cbrt;
1022using ::cbrtf;
1023
1024inline _LIBCPP_INLINE_VISIBILITY float cbrt(float __x) {return cbrtf(__x);}
1025inline _LIBCPP_INLINE_VISIBILITY long double cbrt(long double __x) {return cbrtl(__x);}
1026
1027template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001028inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001029typename enable_if<is_integral<_A1>::value, double>::type
1030cbrt(_A1 __x) {return cbrt((double)__x);}
1031
1032// copysign
1033
1034using ::copysign;
1035using ::copysignf;
1036
1037inline _LIBCPP_INLINE_VISIBILITY float copysign(float __x, float __y) {return copysignf(__x, __y);}
1038inline _LIBCPP_INLINE_VISIBILITY long double copysign(long double __x, long double __y) {return copysignl(__x, __y);}
1039
1040template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001041inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001042typename enable_if
1043<
1044 is_arithmetic<_A1>::value &&
1045 is_arithmetic<_A2>::value,
1046 typename __promote<_A1, _A2>::type
1047>::type
1048copysign(_A1 __x, _A2 __y)
1049{
1050 typedef typename __promote<_A1, _A2>::type __result_type;
1051 static_assert((!(is_same<_A1, __result_type>::value &&
1052 is_same<_A2, __result_type>::value)), "");
1053 return copysign((__result_type)__x, (__result_type)__y);
1054}
1055
1056// erf
1057
1058using ::erf;
1059using ::erff;
1060
1061inline _LIBCPP_INLINE_VISIBILITY float erf(float __x) {return erff(__x);}
1062inline _LIBCPP_INLINE_VISIBILITY long double erf(long double __x) {return erfl(__x);}
1063
1064template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001065inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001066typename enable_if<is_integral<_A1>::value, double>::type
1067erf(_A1 __x) {return erf((double)__x);}
1068
1069// erfc
1070
1071using ::erfc;
1072using ::erfcf;
1073
1074inline _LIBCPP_INLINE_VISIBILITY float erfc(float __x) {return erfcf(__x);}
1075inline _LIBCPP_INLINE_VISIBILITY long double erfc(long double __x) {return erfcl(__x);}
1076
1077template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001078inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001079typename enable_if<is_integral<_A1>::value, double>::type
1080erfc(_A1 __x) {return erfc((double)__x);}
1081
1082// exp2
1083
1084using ::exp2;
1085using ::exp2f;
1086
1087inline _LIBCPP_INLINE_VISIBILITY float exp2(float __x) {return exp2f(__x);}
1088inline _LIBCPP_INLINE_VISIBILITY long double exp2(long double __x) {return exp2l(__x);}
1089
1090template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001091inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001092typename enable_if<is_integral<_A1>::value, double>::type
1093exp2(_A1 __x) {return exp2((double)__x);}
1094
1095// expm1
1096
1097using ::expm1;
1098using ::expm1f;
1099
1100inline _LIBCPP_INLINE_VISIBILITY float expm1(float __x) {return expm1f(__x);}
1101inline _LIBCPP_INLINE_VISIBILITY long double expm1(long double __x) {return expm1l(__x);}
1102
1103template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001104inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001105typename enable_if<is_integral<_A1>::value, double>::type
1106expm1(_A1 __x) {return expm1((double)__x);}
1107
1108// fdim
1109
1110using ::fdim;
1111using ::fdimf;
1112
1113inline _LIBCPP_INLINE_VISIBILITY float fdim(float __x, float __y) {return fdimf(__x, __y);}
1114inline _LIBCPP_INLINE_VISIBILITY long double fdim(long double __x, long double __y) {return fdiml(__x, __y);}
1115
1116template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001117inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001118typename enable_if
1119<
1120 is_arithmetic<_A1>::value &&
1121 is_arithmetic<_A2>::value,
1122 typename __promote<_A1, _A2>::type
1123>::type
1124fdim(_A1 __x, _A2 __y)
1125{
1126 typedef typename __promote<_A1, _A2>::type __result_type;
1127 static_assert((!(is_same<_A1, __result_type>::value &&
1128 is_same<_A2, __result_type>::value)), "");
1129 return fdim((__result_type)__x, (__result_type)__y);
1130}
1131
1132// fma
1133
1134inline _LIBCPP_INLINE_VISIBILITY float fmaf(float __x, float __y, float __z) {return (float)((double)__x*__y + __z);}
1135#define FP_FAST_FMAF
1136
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001137using ::fma;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001138
1139inline _LIBCPP_INLINE_VISIBILITY float fma(float __x, float __y, float __z) {return fmaf(__x, __y, __z);}
1140inline _LIBCPP_INLINE_VISIBILITY long double fma(long double __x, long double __y, long double __z) {return fmal(__x, __y, __z);}
1141
1142template <class _A1, class _A2, class _A3>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001143inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001144typename enable_if
1145<
1146 is_arithmetic<_A1>::value &&
1147 is_arithmetic<_A2>::value &&
1148 is_arithmetic<_A3>::value,
1149 typename __promote<_A1, _A2, _A3>::type
1150>::type
1151fma(_A1 __x, _A2 __y, _A3 __z)
1152{
1153 typedef typename __promote<_A1, _A2, _A3>::type __result_type;
1154 static_assert((!(is_same<_A1, __result_type>::value &&
1155 is_same<_A2, __result_type>::value &&
1156 is_same<_A3, __result_type>::value)), "");
1157 return fma((__result_type)__x, (__result_type)__y, (__result_type)__z);
1158}
1159
1160// fmax
1161
1162using ::fmax;
1163using ::fmaxf;
1164
1165inline _LIBCPP_INLINE_VISIBILITY float fmax(float __x, float __y) {return fmaxf(__x, __y);}
1166inline _LIBCPP_INLINE_VISIBILITY long double fmax(long double __x, long double __y) {return fmaxl(__x, __y);}
1167
1168template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001169inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001170typename enable_if
1171<
1172 is_arithmetic<_A1>::value &&
1173 is_arithmetic<_A2>::value,
1174 typename __promote<_A1, _A2>::type
1175>::type
1176fmax(_A1 __x, _A2 __y)
1177{
1178 typedef typename __promote<_A1, _A2>::type __result_type;
1179 static_assert((!(is_same<_A1, __result_type>::value &&
1180 is_same<_A2, __result_type>::value)), "");
1181 return fmax((__result_type)__x, (__result_type)__y);
1182}
1183
1184// fmin
1185
1186using ::fmin;
1187using ::fminf;
1188
1189inline _LIBCPP_INLINE_VISIBILITY float fmin(float __x, float __y) {return fminf(__x, __y);}
1190inline _LIBCPP_INLINE_VISIBILITY long double fmin(long double __x, long double __y) {return fminl(__x, __y);}
1191
1192template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001193inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001194typename enable_if
1195<
1196 is_arithmetic<_A1>::value &&
1197 is_arithmetic<_A2>::value,
1198 typename __promote<_A1, _A2>::type
1199>::type
1200fmin(_A1 __x, _A2 __y)
1201{
1202 typedef typename __promote<_A1, _A2>::type __result_type;
1203 static_assert((!(is_same<_A1, __result_type>::value &&
1204 is_same<_A2, __result_type>::value)), "");
1205 return fmin((__result_type)__x, (__result_type)__y);
1206}
1207
1208// hypot
1209
1210using ::hypot;
1211using ::hypotf;
1212
1213inline _LIBCPP_INLINE_VISIBILITY float hypot(float __x, float __y) {return hypotf(__x, __y);}
1214inline _LIBCPP_INLINE_VISIBILITY long double hypot(long double __x, long double __y) {return hypotl(__x, __y);}
1215
1216template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001217inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001218typename enable_if
1219<
1220 is_arithmetic<_A1>::value &&
1221 is_arithmetic<_A2>::value,
1222 typename __promote<_A1, _A2>::type
1223>::type
1224hypot(_A1 __x, _A2 __y)
1225{
1226 typedef typename __promote<_A1, _A2>::type __result_type;
1227 static_assert((!(is_same<_A1, __result_type>::value &&
1228 is_same<_A2, __result_type>::value)), "");
1229 return hypot((__result_type)__x, (__result_type)__y);
1230}
1231
1232// ilogb
1233
1234using ::ilogb;
1235using ::ilogbf;
1236
1237inline _LIBCPP_INLINE_VISIBILITY int ilogb(float __x) {return ilogbf(__x);}
1238inline _LIBCPP_INLINE_VISIBILITY int ilogb(long double __x) {return ilogbl(__x);}
1239
1240template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001241inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001242typename enable_if<is_integral<_A1>::value, int>::type
1243ilogb(_A1 __x) {return ilogb((double)__x);}
1244
1245// lgamma
1246
1247using ::lgamma;
1248using ::lgammaf;
1249
1250inline _LIBCPP_INLINE_VISIBILITY float lgamma(float __x) {return lgammaf(__x);}
1251inline _LIBCPP_INLINE_VISIBILITY long double lgamma(long double __x) {return lgammal(__x);}
1252
1253template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001254inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001255typename enable_if<is_integral<_A1>::value, double>::type
1256lgamma(_A1 __x) {return lgamma((double)__x);}
1257
1258// llrint
1259
1260using ::llrint;
1261using ::llrintf;
1262
1263inline _LIBCPP_INLINE_VISIBILITY long long llrint(float __x) {return llrintf(__x);}
1264inline _LIBCPP_INLINE_VISIBILITY long long llrint(long double __x) {return llrintl(__x);}
1265
1266template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001267inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001268typename enable_if<is_integral<_A1>::value, long long>::type
1269llrint(_A1 __x) {return llrint((double)__x);}
1270
1271// llround
1272
1273using ::llround;
1274using ::llroundf;
1275
1276inline _LIBCPP_INLINE_VISIBILITY long long llround(float __x) {return llroundf(__x);}
1277inline _LIBCPP_INLINE_VISIBILITY long long llround(long double __x) {return llroundl(__x);}
1278
1279template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001280inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001281typename enable_if<is_integral<_A1>::value, long long>::type
1282llround(_A1 __x) {return llround((double)__x);}
1283
1284// log1p
1285
1286using ::log1p;
1287using ::log1pf;
1288
1289inline _LIBCPP_INLINE_VISIBILITY float log1p(float __x) {return log1pf(__x);}
1290inline _LIBCPP_INLINE_VISIBILITY long double log1p(long double __x) {return log1pl(__x);}
1291
1292template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001293inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001294typename enable_if<is_integral<_A1>::value, double>::type
1295log1p(_A1 __x) {return log1p((double)__x);}
1296
1297// log2
1298
1299using ::log2;
1300using ::log2f;
1301
1302inline _LIBCPP_INLINE_VISIBILITY float log2(float __x) {return log2f(__x);}
1303inline _LIBCPP_INLINE_VISIBILITY long double log2(long double __x) {return log2l(__x);}
1304
1305template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001306inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001307typename enable_if<is_integral<_A1>::value, double>::type
1308log2(_A1 __x) {return log2((double)__x);}
1309
1310// logb
1311
1312using ::logb;
1313using ::logbf;
1314
1315inline _LIBCPP_INLINE_VISIBILITY float logb(float __x) {return logbf(__x);}
1316inline _LIBCPP_INLINE_VISIBILITY long double logb(long double __x) {return logbl(__x);}
1317
1318template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001319inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001320typename enable_if<is_integral<_A1>::value, double>::type
1321logb(_A1 __x) {return logb((double)__x);}
1322
1323// lrint
1324
1325using ::lrint;
1326using ::lrintf;
1327
1328inline _LIBCPP_INLINE_VISIBILITY long lrint(float __x) {return lrintf(__x);}
1329inline _LIBCPP_INLINE_VISIBILITY long lrint(long double __x) {return lrintl(__x);}
1330
1331template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001332inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001333typename enable_if<is_integral<_A1>::value, long>::type
1334lrint(_A1 __x) {return lrint((double)__x);}
1335
1336// lround
1337
1338using ::lround;
1339using ::lroundf;
1340
1341inline _LIBCPP_INLINE_VISIBILITY long lround(float __x) {return lroundf(__x);}
1342inline _LIBCPP_INLINE_VISIBILITY long lround(long double __x) {return lroundl(__x);}
1343
1344template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001345inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001346typename enable_if<is_integral<_A1>::value, long>::type
1347lround(_A1 __x) {return lround((double)__x);}
1348
1349// nan
1350
1351using ::nan;
1352using ::nanf;
1353
1354// nearbyint
1355
1356using ::nearbyint;
1357using ::nearbyintf;
1358
1359inline _LIBCPP_INLINE_VISIBILITY float nearbyint(float __x) {return nearbyintf(__x);}
1360inline _LIBCPP_INLINE_VISIBILITY long double nearbyint(long double __x) {return nearbyintl(__x);}
1361
1362template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001363inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001364typename enable_if<is_integral<_A1>::value, double>::type
1365nearbyint(_A1 __x) {return nearbyint((double)__x);}
1366
1367// nextafter
1368
1369using ::nextafter;
1370using ::nextafterf;
1371
1372inline _LIBCPP_INLINE_VISIBILITY float nextafter(float __x, float __y) {return nextafterf(__x, __y);}
1373inline _LIBCPP_INLINE_VISIBILITY long double nextafter(long double __x, long double __y) {return nextafterl(__x, __y);}
1374
1375template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001376inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001377typename enable_if
1378<
1379 is_arithmetic<_A1>::value &&
1380 is_arithmetic<_A2>::value,
1381 typename __promote<_A1, _A2>::type
1382>::type
1383nextafter(_A1 __x, _A2 __y)
1384{
1385 typedef typename __promote<_A1, _A2>::type __result_type;
1386 static_assert((!(is_same<_A1, __result_type>::value &&
1387 is_same<_A2, __result_type>::value)), "");
1388 return nextafter((__result_type)__x, (__result_type)__y);
1389}
1390
1391// nexttoward
1392
1393using ::nexttoward;
1394using ::nexttowardf;
1395
1396inline _LIBCPP_INLINE_VISIBILITY float nexttoward(float __x, long double __y) {return nexttowardf(__x, __y);}
1397inline _LIBCPP_INLINE_VISIBILITY long double nexttoward(long double __x, long double __y) {return nexttowardl(__x, __y);}
1398
1399template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001400inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001401typename enable_if<is_integral<_A1>::value, double>::type
1402nexttoward(_A1 __x, long double __y) {return nexttoward((double)__x, __y);}
1403
1404// remainder
1405
1406using ::remainder;
1407using ::remainderf;
1408
1409inline _LIBCPP_INLINE_VISIBILITY float remainder(float __x, float __y) {return remainderf(__x, __y);}
1410inline _LIBCPP_INLINE_VISIBILITY long double remainder(long double __x, long double __y) {return remainderl(__x, __y);}
1411
1412template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001413inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001414typename enable_if
1415<
1416 is_arithmetic<_A1>::value &&
1417 is_arithmetic<_A2>::value,
1418 typename __promote<_A1, _A2>::type
1419>::type
1420remainder(_A1 __x, _A2 __y)
1421{
1422 typedef typename __promote<_A1, _A2>::type __result_type;
1423 static_assert((!(is_same<_A1, __result_type>::value &&
1424 is_same<_A2, __result_type>::value)), "");
1425 return remainder((__result_type)__x, (__result_type)__y);
1426}
1427
1428// remquo
1429
1430using ::remquo;
1431using ::remquof;
1432
1433inline _LIBCPP_INLINE_VISIBILITY float remquo(float __x, float __y, int* __z) {return remquof(__x, __y, __z);}
1434inline _LIBCPP_INLINE_VISIBILITY long double remquo(long double __x, long double __y, int* __z) {return remquol(__x, __y, __z);}
1435
1436template <class _A1, class _A2>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001437inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001438typename enable_if
1439<
1440 is_arithmetic<_A1>::value &&
1441 is_arithmetic<_A2>::value,
1442 typename __promote<_A1, _A2>::type
1443>::type
1444remquo(_A1 __x, _A2 __y, int* __z)
1445{
1446 typedef typename __promote<_A1, _A2>::type __result_type;
1447 static_assert((!(is_same<_A1, __result_type>::value &&
1448 is_same<_A2, __result_type>::value)), "");
1449 return remquo((__result_type)__x, (__result_type)__y, __z);
1450}
1451
1452// rint
1453
1454using ::rint;
1455using ::rintf;
1456
1457inline _LIBCPP_INLINE_VISIBILITY float rint(float __x) {return rintf(__x);}
1458inline _LIBCPP_INLINE_VISIBILITY long double rint(long double __x) {return rintl(__x);}
1459
1460template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001461inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001462typename enable_if<is_integral<_A1>::value, double>::type
1463rint(_A1 __x) {return rint((double)__x);}
1464
1465// round
1466
1467using ::round;
1468using ::roundf;
1469
1470inline _LIBCPP_INLINE_VISIBILITY float round(float __x) {return roundf(__x);}
1471inline _LIBCPP_INLINE_VISIBILITY long double round(long double __x) {return roundl(__x);}
1472
1473template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001474inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001475typename enable_if<is_integral<_A1>::value, double>::type
1476round(_A1 __x) {return round((double)__x);}
1477
1478// scalbln
1479
1480using ::scalbln;
1481using ::scalblnf;
1482
1483inline _LIBCPP_INLINE_VISIBILITY float scalbln(float __x, long __y) {return scalblnf(__x, __y);}
1484inline _LIBCPP_INLINE_VISIBILITY long double scalbln(long double __x, long __y) {return scalblnl(__x, __y);}
1485
1486template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001487inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001488typename enable_if<is_integral<_A1>::value, double>::type
1489scalbln(_A1 __x, long __y) {return scalbln((double)__x, __y);}
1490
1491// scalbn
1492
1493using ::scalbn;
1494using ::scalbnf;
1495
1496inline _LIBCPP_INLINE_VISIBILITY float scalbn(float __x, int __y) {return scalbnf(__x, __y);}
1497inline _LIBCPP_INLINE_VISIBILITY long double scalbn(long double __x, int __y) {return scalbnl(__x, __y);}
1498
1499template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001500inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001501typename enable_if<is_integral<_A1>::value, double>::type
1502scalbn(_A1 __x, int __y) {return scalbn((double)__x, __y);}
1503
1504// tgamma
1505
1506using ::tgamma;
1507using ::tgammaf;
1508
1509inline _LIBCPP_INLINE_VISIBILITY float tgamma(float __x) {return tgammaf(__x);}
1510inline _LIBCPP_INLINE_VISIBILITY long double tgamma(long double __x) {return tgammal(__x);}
1511
1512template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001513inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001514typename enable_if<is_integral<_A1>::value, double>::type
1515tgamma(_A1 __x) {return tgamma((double)__x);}
1516
1517// trunc
1518
1519using ::trunc;
1520using ::truncf;
1521
1522inline _LIBCPP_INLINE_VISIBILITY float trunc(float __x) {return truncf(__x);}
1523inline _LIBCPP_INLINE_VISIBILITY long double trunc(long double __x) {return truncl(__x);}
1524
1525template <class _A1>
Howard Hinnant422a53f2010-09-21 21:28:23 +00001526inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001527typename enable_if<is_integral<_A1>::value, double>::type
1528trunc(_A1 __x) {return trunc((double)__x);}
1529
1530using ::acosl;
1531using ::asinl;
1532using ::atanl;
1533using ::atan2l;
1534using ::ceill;
1535using ::cosl;
1536using ::coshl;
1537using ::expl;
1538using ::fabsl;
1539using ::floorl;
1540using ::fmodl;
1541using ::frexpl;
1542using ::ldexpl;
1543using ::logl;
1544using ::log10l;
1545using ::modfl;
1546using ::powl;
1547using ::sinl;
1548using ::sinhl;
1549using ::sqrtl;
1550using ::tanl;
1551using ::tanhl;
1552using ::acoshl;
1553using ::asinhl;
1554using ::atanhl;
1555using ::cbrtl;
1556using ::copysignl;
1557using ::erfl;
1558using ::erfcl;
1559using ::exp2l;
1560using ::expm1l;
1561using ::fdiml;
1562using ::fmal;
1563using ::fmaxl;
1564using ::fminl;
1565using ::hypotl;
1566using ::ilogbl;
1567using ::lgammal;
1568using ::llrintl;
1569using ::llroundl;
1570using ::log1pl;
1571using ::log2l;
1572using ::logbl;
1573using ::lrintl;
1574using ::lroundl;
1575using ::nanl;
1576using ::nearbyintl;
1577using ::nextafterl;
1578using ::nexttowardl;
1579using ::remainderl;
1580using ::remquol;
1581using ::rintl;
1582using ::roundl;
1583using ::scalblnl;
1584using ::scalbnl;
1585using ::tgammal;
1586using ::truncl;
1587
1588_LIBCPP_END_NAMESPACE_STD
1589
Howard Hinnant60a0a8e2010-08-10 20:48:29 +00001590// FIXME: work around for Clang with -std=C++0x on OSX/iOS
1591#if defined(__clang__) && defined(__APPLE__)
1592# pragma pop_macro("__STRICT_ANSI__")
1593#endif
1594
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001595#endif // _LIBCPP_CMATH