Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===---------------------------- cmath -----------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
| 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 | |
| 17 | Macros: |
| 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 | |
| 38 | namespace std |
| 39 | { |
| 40 | |
| 41 | Types: |
| 42 | |
| 43 | float_t // C99 |
| 44 | double_t // C99 |
| 45 | |
| 46 | // C90 |
| 47 | |
| 48 | floating_point abs(floating_point x); |
| 49 | |
| 50 | floating_point acos (arithmetic x); |
| 51 | float acosf(float x); |
| 52 | long double acosl(long double x); |
| 53 | |
| 54 | floating_point asin (arithmetic x); |
| 55 | float asinf(float x); |
| 56 | long double asinl(long double x); |
| 57 | |
| 58 | floating_point atan (arithmetic x); |
| 59 | float atanf(float x); |
| 60 | long double atanl(long double x); |
| 61 | |
| 62 | floating_point atan2 (arithmetic y, arithmetic x); |
| 63 | float atan2f(float y, float x); |
| 64 | long double atan2l(long double y, long double x); |
| 65 | |
| 66 | floating_point ceil (arithmetic x); |
| 67 | float ceilf(float x); |
| 68 | long double ceill(long double x); |
| 69 | |
| 70 | floating_point cos (arithmetic x); |
| 71 | float cosf(float x); |
| 72 | long double cosl(long double x); |
| 73 | |
| 74 | floating_point cosh (arithmetic x); |
| 75 | float coshf(float x); |
| 76 | long double coshl(long double x); |
| 77 | |
| 78 | floating_point exp (arithmetic x); |
| 79 | float expf(float x); |
| 80 | long double expl(long double x); |
| 81 | |
| 82 | floating_point fabs (arithmetic x); |
| 83 | float fabsf(float x); |
| 84 | long double fabsl(long double x); |
| 85 | |
| 86 | floating_point floor (arithmetic x); |
| 87 | float floorf(float x); |
| 88 | long double floorl(long double x); |
| 89 | |
| 90 | floating_point fmod (arithmetic x, arithmetic y); |
| 91 | float fmodf(float x, float y); |
| 92 | long double fmodl(long double x, long double y); |
| 93 | |
| 94 | floating_point frexp (arithmetic value, int* exp); |
| 95 | float frexpf(float value, int* exp); |
| 96 | long double frexpl(long double value, int* exp); |
| 97 | |
| 98 | floating_point ldexp (arithmetic value, int exp); |
| 99 | float ldexpf(float value, int exp); |
| 100 | long double ldexpl(long double value, int exp); |
| 101 | |
| 102 | floating_point log (arithmetic x); |
| 103 | float logf(float x); |
| 104 | long double logl(long double x); |
| 105 | |
| 106 | floating_point log10 (arithmetic x); |
| 107 | float log10f(float x); |
| 108 | long double log10l(long double x); |
| 109 | |
| 110 | floating_point modf (floating_point value, floating_point* iptr); |
| 111 | float modff(float value, float* iptr); |
| 112 | long double modfl(long double value, long double* iptr); |
| 113 | |
| 114 | floating_point pow (arithmetic x, arithmetic y); |
| 115 | float powf(float x, float y); |
| 116 | long double powl(long double x, long double y); |
| 117 | |
| 118 | floating_point sin (arithmetic x); |
| 119 | float sinf(float x); |
| 120 | long double sinl(long double x); |
| 121 | |
| 122 | floating_point sinh (arithmetic x); |
| 123 | float sinhf(float x); |
| 124 | long double sinhl(long double x); |
| 125 | |
| 126 | floating_point sqrt (arithmetic x); |
| 127 | float sqrtf(float x); |
| 128 | long double sqrtl(long double x); |
| 129 | |
| 130 | floating_point tan (arithmetic x); |
| 131 | float tanf(float x); |
| 132 | long double tanl(long double x); |
| 133 | |
| 134 | floating_point tanh (arithmetic x); |
| 135 | float tanhf(float x); |
| 136 | long double tanhl(long double x); |
| 137 | |
| 138 | // C99 |
| 139 | |
| 140 | bool signbit(floating_point x); |
| 141 | |
| 142 | int fpclassify(floating_point x); |
| 143 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 144 | bool isfinite(floating_point x); |
| 145 | bool isinf(floating_point x); |
| 146 | bool isnan(floating_point x); |
| 147 | bool isnormal(floating_point x); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 148 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 149 | bool isgreater(floating_point x, floating_point y); |
| 150 | bool isgreaterequal(floating_point x, floating_point y); |
| 151 | bool isless(floating_point x, floating_point y); |
| 152 | bool islessequal(floating_point x, floating_point y); |
| 153 | bool islessgreater(floating_point x, floating_point y); |
| 154 | bool isunordered(floating_point x, floating_point y); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 155 | |
| 156 | floating_point acosh (arithmetic x); |
| 157 | float acoshf(float x); |
| 158 | long double acoshl(long double x); |
| 159 | |
| 160 | floating_point asinh (arithmetic x); |
| 161 | float asinhf(float x); |
| 162 | long double asinhl(long double x); |
| 163 | |
| 164 | floating_point atanh (arithmetic x); |
| 165 | float atanhf(float x); |
| 166 | long double atanhl(long double x); |
| 167 | |
| 168 | floating_point cbrt (arithmetic x); |
| 169 | float cbrtf(float x); |
| 170 | long double cbrtl(long double x); |
| 171 | |
| 172 | floating_point copysign (arithmetic x, arithmetic y); |
| 173 | float copysignf(float x, float y); |
| 174 | long double copysignl(long double x, long double y); |
| 175 | |
| 176 | floating_point erf (arithmetic x); |
| 177 | float erff(float x); |
| 178 | long double erfl(long double x); |
| 179 | |
| 180 | floating_point erfc (arithmetic x); |
| 181 | float erfcf(float x); |
| 182 | long double erfcl(long double x); |
| 183 | |
| 184 | floating_point exp2 (arithmetic x); |
| 185 | float exp2f(float x); |
| 186 | long double exp2l(long double x); |
| 187 | |
| 188 | floating_point expm1 (arithmetic x); |
| 189 | float expm1f(float x); |
| 190 | long double expm1l(long double x); |
| 191 | |
| 192 | floating_point fdim (arithmetic x, arithmetic y); |
| 193 | float fdimf(float x, float y); |
| 194 | long double fdiml(long double x, long double y); |
| 195 | |
| 196 | floating_point fma (arithmetic x, arithmetic y, arithmetic z); |
| 197 | float fmaf(float x, float y, float z); |
| 198 | long double fmal(long double x, long double y, long double z); |
| 199 | |
| 200 | floating_point fmax (arithmetic x, arithmetic y); |
| 201 | float fmaxf(float x, float y); |
| 202 | long double fmaxl(long double x, long double y); |
| 203 | |
| 204 | floating_point fmin (arithmetic x, arithmetic y); |
| 205 | float fminf(float x, float y); |
| 206 | long double fminl(long double x, long double y); |
| 207 | |
| 208 | floating_point hypot (arithmetic x, arithmetic y); |
| 209 | float hypotf(float x, float y); |
| 210 | long double hypotl(long double x, long double y); |
| 211 | |
| 212 | int ilogb (arithmetic x); |
| 213 | int ilogbf(float x); |
| 214 | int ilogbl(long double x); |
| 215 | |
| 216 | floating_point lgamma (arithmetic x); |
| 217 | float lgammaf(float x); |
| 218 | long double lgammal(long double x); |
| 219 | |
| 220 | long long llrint (arithmetic x); |
| 221 | long long llrintf(float x); |
| 222 | long long llrintl(long double x); |
| 223 | |
| 224 | long long llround (arithmetic x); |
| 225 | long long llroundf(float x); |
| 226 | long long llroundl(long double x); |
| 227 | |
| 228 | floating_point log1p (arithmetic x); |
| 229 | float log1pf(float x); |
| 230 | long double log1pl(long double x); |
| 231 | |
| 232 | floating_point log2 (arithmetic x); |
| 233 | float log2f(float x); |
| 234 | long double log2l(long double x); |
| 235 | |
| 236 | floating_point logb (arithmetic x); |
| 237 | float logbf(float x); |
| 238 | long double logbl(long double x); |
| 239 | |
| 240 | long lrint (arithmetic x); |
| 241 | long lrintf(float x); |
| 242 | long lrintl(long double x); |
| 243 | |
| 244 | long lround (arithmetic x); |
| 245 | long lroundf(float x); |
| 246 | long lroundl(long double x); |
| 247 | |
| 248 | double nan (const char* str); |
| 249 | float nanf(const char* str); |
| 250 | long double nanl(const char* str); |
| 251 | |
| 252 | floating_point nearbyint (arithmetic x); |
| 253 | float nearbyintf(float x); |
| 254 | long double nearbyintl(long double x); |
| 255 | |
| 256 | floating_point nextafter (arithmetic x, arithmetic y); |
| 257 | float nextafterf(float x, float y); |
| 258 | long double nextafterl(long double x, long double y); |
| 259 | |
| 260 | floating_point nexttoward (arithmetic x, long double y); |
| 261 | float nexttowardf(float x, long double y); |
| 262 | long double nexttowardl(long double x, long double y); |
| 263 | |
| 264 | floating_point remainder (arithmetic x, arithmetic y); |
| 265 | float remainderf(float x, float y); |
| 266 | long double remainderl(long double x, long double y); |
| 267 | |
| 268 | floating_point remquo (arithmetic x, arithmetic y, int* pquo); |
| 269 | float remquof(float x, float y, int* pquo); |
| 270 | long double remquol(long double x, long double y, int* pquo); |
| 271 | |
| 272 | floating_point rint (arithmetic x); |
| 273 | float rintf(float x); |
| 274 | long double rintl(long double x); |
| 275 | |
| 276 | floating_point round (arithmetic x); |
| 277 | float roundf(float x); |
| 278 | long double roundl(long double x); |
| 279 | |
| 280 | floating_point scalbln (arithmetic x, long ex); |
| 281 | float scalblnf(float x, long ex); |
| 282 | long double scalblnl(long double x, long ex); |
| 283 | |
| 284 | floating_point scalbn (arithmetic x, int ex); |
| 285 | float scalbnf(float x, int ex); |
| 286 | long double scalbnl(long double x, int ex); |
| 287 | |
| 288 | floating_point tgamma (arithmetic x); |
| 289 | float tgammaf(float x); |
| 290 | long double tgammal(long double x); |
| 291 | |
| 292 | floating_point trunc (arithmetic x); |
| 293 | float truncf(float x); |
| 294 | long double truncl(long double x); |
| 295 | |
| 296 | } // std |
| 297 | |
| 298 | */ |
| 299 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 300 | // FIXME: work around for Clang with -std=C++0x on OSX/iOS |
Howard Hinnant | 60a0a8e | 2010-08-10 20:48:29 +0000 | [diff] [blame] | 301 | #if defined(__clang__) && defined(__APPLE__) |
| 302 | # pragma push_macro("__STRICT_ANSI__") |
| 303 | # undef __STRICT_ANSI__ |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 304 | #endif // defined(__clang__) && defined(__APPLE__) |
Howard Hinnant | 60a0a8e | 2010-08-10 20:48:29 +0000 | [diff] [blame] | 305 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 306 | #include <__config> |
| 307 | #include <math.h> |
| 308 | #include <type_traits> |
| 309 | |
| 310 | #pragma GCC system_header |
| 311 | |
| 312 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 313 | |
| 314 | using ::float_t; |
| 315 | using ::double_t; |
| 316 | |
| 317 | // abs |
| 318 | |
| 319 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 320 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 321 | typename enable_if<is_floating_point<_A1>::value, _A1>::type |
| 322 | abs(_A1 __x) {return fabs(__x);} |
| 323 | |
| 324 | // acos |
| 325 | |
| 326 | using ::acos; |
| 327 | using ::acosf; |
| 328 | |
| 329 | inline _LIBCPP_INLINE_VISIBILITY float acos(float __x) {return acosf(__x);} |
| 330 | inline _LIBCPP_INLINE_VISIBILITY long double acos(long double __x) {return acosl(__x);} |
| 331 | |
| 332 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 333 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 334 | typename enable_if<is_integral<_A1>::value, double>::type |
| 335 | acos(_A1 __x) {return acos((double)__x);} |
| 336 | |
| 337 | // asin |
| 338 | |
| 339 | using ::asin; |
| 340 | using ::asinf; |
| 341 | |
| 342 | inline _LIBCPP_INLINE_VISIBILITY float asin(float __x) {return asinf(__x);} |
| 343 | inline _LIBCPP_INLINE_VISIBILITY long double asin(long double __x) {return asinl(__x);} |
| 344 | |
| 345 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 346 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 347 | typename enable_if<is_integral<_A1>::value, double>::type |
| 348 | asin(_A1 __x) {return asin((double)__x);} |
| 349 | |
| 350 | // atan |
| 351 | |
| 352 | using ::atan; |
| 353 | using ::atanf; |
| 354 | |
| 355 | inline _LIBCPP_INLINE_VISIBILITY float atan(float __x) {return atanf(__x);} |
| 356 | inline _LIBCPP_INLINE_VISIBILITY long double atan(long double __x) {return atanl(__x);} |
| 357 | |
| 358 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 359 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 360 | typename enable_if<is_integral<_A1>::value, double>::type |
| 361 | atan(_A1 __x) {return atan((double)__x);} |
| 362 | |
| 363 | // atan2 |
| 364 | |
| 365 | using ::atan2; |
| 366 | using ::atan2f; |
| 367 | |
| 368 | inline _LIBCPP_INLINE_VISIBILITY float atan2(float __y, float __x) {return atan2f(__y, __x);} |
| 369 | inline _LIBCPP_INLINE_VISIBILITY long double atan2(long double __y, long double __x) {return atan2l(__y, __x);} |
| 370 | |
| 371 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 372 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 373 | typename enable_if |
| 374 | < |
| 375 | is_arithmetic<_A1>::value && |
| 376 | is_arithmetic<_A2>::value, |
| 377 | typename __promote<_A1, _A2>::type |
| 378 | >::type |
| 379 | atan2(_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 | |
| 389 | using ::ceil; |
| 390 | using ::ceilf; |
| 391 | |
| 392 | inline _LIBCPP_INLINE_VISIBILITY float ceil(float __x) {return ceilf(__x);} |
| 393 | inline _LIBCPP_INLINE_VISIBILITY long double ceil(long double __x) {return ceill(__x);} |
| 394 | |
| 395 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 396 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 397 | typename enable_if<is_integral<_A1>::value, double>::type |
| 398 | ceil(_A1 __x) {return ceil((double)__x);} |
| 399 | |
| 400 | // cos |
| 401 | |
| 402 | using ::cos; |
| 403 | using ::cosf; |
| 404 | |
| 405 | inline _LIBCPP_INLINE_VISIBILITY float cos(float __x) {return cosf(__x);} |
| 406 | inline _LIBCPP_INLINE_VISIBILITY long double cos(long double __x) {return cosl(__x);} |
| 407 | |
| 408 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 409 | inline _LIBCPP_ALWAYS_INLINE _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 410 | typename enable_if<is_integral<_A1>::value, double>::type |
| 411 | cos(_A1 __x) {return cos((double)__x);} |
| 412 | |
| 413 | // cosh |
| 414 | |
| 415 | using ::cosh; |
| 416 | using ::coshf; |
| 417 | |
| 418 | inline _LIBCPP_INLINE_VISIBILITY float cosh(float __x) {return coshf(__x);} |
| 419 | inline _LIBCPP_INLINE_VISIBILITY long double cosh(long double __x) {return coshl(__x);} |
| 420 | |
| 421 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 422 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 423 | typename enable_if<is_integral<_A1>::value, double>::type |
| 424 | cosh(_A1 __x) {return cosh((double)__x);} |
| 425 | |
| 426 | // exp |
| 427 | |
| 428 | using ::exp; |
| 429 | using ::expf; |
| 430 | |
| 431 | inline _LIBCPP_INLINE_VISIBILITY float exp(float __x) {return expf(__x);} |
| 432 | inline _LIBCPP_INLINE_VISIBILITY long double exp(long double __x) {return expl(__x);} |
| 433 | |
| 434 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 435 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 436 | typename enable_if<is_integral<_A1>::value, double>::type |
| 437 | exp(_A1 __x) {return exp((double)__x);} |
| 438 | |
| 439 | // fabs |
| 440 | |
| 441 | using ::fabs; |
| 442 | using ::fabsf; |
| 443 | |
| 444 | inline _LIBCPP_INLINE_VISIBILITY float fabs(float __x) {return fabsf(__x);} |
| 445 | inline _LIBCPP_INLINE_VISIBILITY long double fabs(long double __x) {return fabsl(__x);} |
| 446 | |
| 447 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 448 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 449 | typename enable_if<is_integral<_A1>::value, double>::type |
| 450 | fabs(_A1 __x) {return fabs((double)__x);} |
| 451 | |
| 452 | // floor |
| 453 | |
| 454 | using ::floor; |
| 455 | using ::floorf; |
| 456 | |
| 457 | inline _LIBCPP_INLINE_VISIBILITY float floor(float __x) {return floorf(__x);} |
| 458 | inline _LIBCPP_INLINE_VISIBILITY long double floor(long double __x) {return floorl(__x);} |
| 459 | |
| 460 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 461 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 462 | typename enable_if<is_integral<_A1>::value, double>::type |
| 463 | floor(_A1 __x) {return floor((double)__x);} |
| 464 | |
| 465 | // fmod |
| 466 | |
| 467 | using ::fmod; |
| 468 | using ::fmodf; |
| 469 | |
| 470 | inline _LIBCPP_INLINE_VISIBILITY float fmod(float __x, float __y) {return fmodf(__x, __y);} |
| 471 | inline _LIBCPP_INLINE_VISIBILITY long double fmod(long double __x, long double __y) {return fmodl(__x, __y);} |
| 472 | |
| 473 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 474 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 475 | typename enable_if |
| 476 | < |
| 477 | is_arithmetic<_A1>::value && |
| 478 | is_arithmetic<_A2>::value, |
| 479 | typename __promote<_A1, _A2>::type |
| 480 | >::type |
| 481 | fmod(_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 | |
| 491 | using ::frexp; |
| 492 | using ::frexpf; |
| 493 | |
| 494 | inline _LIBCPP_INLINE_VISIBILITY float frexp(float __x, int* __e) {return frexpf(__x, __e);} |
| 495 | inline _LIBCPP_INLINE_VISIBILITY long double frexp(long double __x, int* __e) {return frexpl(__x, __e);} |
| 496 | |
| 497 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 498 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 499 | typename enable_if<is_integral<_A1>::value, double>::type |
| 500 | frexp(_A1 __x, int* __e) {return frexp((double)__x, __e);} |
| 501 | |
| 502 | // ldexp |
| 503 | |
| 504 | using ::ldexp; |
| 505 | using ::ldexpf; |
| 506 | |
| 507 | inline _LIBCPP_INLINE_VISIBILITY float ldexp(float __x, int __e) {return ldexpf(__x, __e);} |
| 508 | inline _LIBCPP_INLINE_VISIBILITY long double ldexp(long double __x, int __e) {return ldexpl(__x, __e);} |
| 509 | |
| 510 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 511 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 512 | typename enable_if<is_integral<_A1>::value, double>::type |
| 513 | ldexp(_A1 __x, int __e) {return ldexp((double)__x, __e);} |
| 514 | |
| 515 | // log |
| 516 | |
| 517 | using ::log; |
| 518 | using ::logf; |
| 519 | |
| 520 | inline _LIBCPP_INLINE_VISIBILITY float log(float __x) {return logf(__x);} |
| 521 | inline _LIBCPP_INLINE_VISIBILITY long double log(long double __x) {return logl(__x);} |
| 522 | |
| 523 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 524 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 525 | typename enable_if<is_integral<_A1>::value, double>::type |
| 526 | log(_A1 __x) {return log((double)__x);} |
| 527 | |
| 528 | // log10 |
| 529 | |
| 530 | using ::log10; |
| 531 | using ::log10f; |
| 532 | |
| 533 | inline _LIBCPP_INLINE_VISIBILITY float log10(float __x) {return log10f(__x);} |
| 534 | inline _LIBCPP_INLINE_VISIBILITY long double log10(long double __x) {return log10l(__x);} |
| 535 | |
| 536 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 537 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 538 | typename enable_if<is_integral<_A1>::value, double>::type |
| 539 | log10(_A1 __x) {return log10((double)__x);} |
| 540 | |
| 541 | // modf |
| 542 | |
| 543 | using ::modf; |
| 544 | using ::modff; |
| 545 | |
| 546 | inline _LIBCPP_INLINE_VISIBILITY float modf(float __x, float* __y) {return modff(__x, __y);} |
| 547 | inline _LIBCPP_INLINE_VISIBILITY long double modf(long double __x, long double* __y) {return modfl(__x, __y);} |
| 548 | |
| 549 | // pow |
| 550 | |
| 551 | using ::pow; |
| 552 | using ::powf; |
| 553 | |
| 554 | inline _LIBCPP_INLINE_VISIBILITY float pow(float __x, float __y) {return powf(__x, __y);} |
| 555 | inline _LIBCPP_INLINE_VISIBILITY long double pow(long double __x, long double __y) {return powl(__x, __y);} |
| 556 | |
| 557 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 558 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 559 | typename enable_if |
| 560 | < |
| 561 | is_arithmetic<_A1>::value && |
| 562 | is_arithmetic<_A2>::value, |
| 563 | typename __promote<_A1, _A2>::type |
| 564 | >::type |
| 565 | pow(_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 | |
| 575 | using ::sin; |
| 576 | using ::sinf; |
| 577 | |
| 578 | inline _LIBCPP_INLINE_VISIBILITY float sin(float __x) {return sinf(__x);} |
| 579 | inline _LIBCPP_INLINE_VISIBILITY long double sin(long double __x) {return sinl(__x);} |
| 580 | |
| 581 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 582 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 583 | typename enable_if<is_integral<_A1>::value, double>::type |
| 584 | sin(_A1 __x) {return sin((double)__x);} |
| 585 | |
| 586 | // sinh |
| 587 | |
| 588 | using ::sinh; |
| 589 | using ::sinhf; |
| 590 | |
| 591 | inline _LIBCPP_INLINE_VISIBILITY float sinh(float __x) {return sinhf(__x);} |
| 592 | inline _LIBCPP_INLINE_VISIBILITY long double sinh(long double __x) {return sinhl(__x);} |
| 593 | |
| 594 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 595 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 596 | typename enable_if<is_integral<_A1>::value, double>::type |
| 597 | sinh(_A1 __x) {return sinh((double)__x);} |
| 598 | |
| 599 | // sqrt |
| 600 | |
| 601 | using ::sqrt; |
| 602 | using ::sqrtf; |
| 603 | |
| 604 | inline _LIBCPP_INLINE_VISIBILITY float sqrt(float __x) {return sqrtf(__x);} |
| 605 | inline _LIBCPP_INLINE_VISIBILITY long double sqrt(long double __x) {return sqrtl(__x);} |
| 606 | |
| 607 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 608 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 609 | typename enable_if<is_integral<_A1>::value, double>::type |
| 610 | sqrt(_A1 __x) {return sqrt((double)__x);} |
| 611 | |
| 612 | // tan |
| 613 | |
| 614 | using ::tan; |
| 615 | using ::tanf; |
| 616 | |
| 617 | inline _LIBCPP_INLINE_VISIBILITY float tan(float __x) {return tanf(__x);} |
| 618 | inline _LIBCPP_INLINE_VISIBILITY long double tan(long double __x) {return tanl(__x);} |
| 619 | |
| 620 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 621 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 622 | typename enable_if<is_integral<_A1>::value, double>::type |
| 623 | tan(_A1 __x) {return tan((double)__x);} |
| 624 | |
| 625 | // tanh |
| 626 | |
| 627 | using ::tanh; |
| 628 | using ::tanhf; |
| 629 | |
| 630 | inline _LIBCPP_INLINE_VISIBILITY float tanh(float __x) {return tanhf(__x);} |
| 631 | inline _LIBCPP_INLINE_VISIBILITY long double tanh(long double __x) {return tanhl(__x);} |
| 632 | |
| 633 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 634 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 635 | typename enable_if<is_integral<_A1>::value, double>::type |
| 636 | tanh(_A1 __x) {return tanh((double)__x);} |
| 637 | |
| 638 | // signbit |
| 639 | |
| 640 | #ifndef signbit |
| 641 | #error Implementation error: signbit not defined |
| 642 | #else |
| 643 | |
| 644 | template <class _A1> |
| 645 | _LIBCPP_ALWAYS_INLINE |
| 646 | bool |
| 647 | __libcpp_signbit(_A1 __x) |
| 648 | { |
| 649 | return signbit(__x); |
| 650 | } |
| 651 | |
| 652 | #undef signbit |
| 653 | |
| 654 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 655 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 656 | typename enable_if<is_floating_point<_A1>::value, bool>::type |
| 657 | signbit(_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 | |
| 670 | template <class _A1> |
| 671 | _LIBCPP_ALWAYS_INLINE |
| 672 | int |
| 673 | __libcpp_fpclassify(_A1 __x) |
| 674 | { |
| 675 | return fpclassify(__x); |
| 676 | } |
| 677 | |
| 678 | #undef fpclassify |
| 679 | |
| 680 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 681 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 682 | typename enable_if<is_floating_point<_A1>::value, int>::type |
| 683 | fpclassify(_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 | |
| 696 | template <class _A1> |
| 697 | _LIBCPP_ALWAYS_INLINE |
| 698 | bool |
| 699 | __libcpp_isfinite(_A1 __x) |
| 700 | { |
| 701 | return isfinite(__x); |
| 702 | } |
| 703 | |
| 704 | #undef isfinite |
| 705 | |
| 706 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 707 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 708 | typename enable_if<is_floating_point<_A1>::value, bool>::type |
| 709 | isfinite(_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 | |
| 722 | template <class _A1> |
| 723 | _LIBCPP_ALWAYS_INLINE |
| 724 | bool |
| 725 | __libcpp_isinf(_A1 __x) |
| 726 | { |
| 727 | return isinf(__x); |
| 728 | } |
| 729 | |
| 730 | #undef isinf |
| 731 | |
| 732 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 733 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 734 | typename enable_if<is_floating_point<_A1>::value, bool>::type |
| 735 | isinf(_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 | |
| 748 | template <class _A1> |
| 749 | _LIBCPP_ALWAYS_INLINE |
| 750 | bool |
| 751 | __libcpp_isnan(_A1 __x) |
| 752 | { |
| 753 | return isnan(__x); |
| 754 | } |
| 755 | |
| 756 | #undef isnan |
| 757 | |
| 758 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 759 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 760 | typename enable_if<is_floating_point<_A1>::value, bool>::type |
| 761 | isnan(_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 | |
| 774 | template <class _A1> |
| 775 | _LIBCPP_ALWAYS_INLINE |
| 776 | bool |
| 777 | __libcpp_isnormal(_A1 __x) |
| 778 | { |
| 779 | return isnormal(__x); |
| 780 | } |
| 781 | |
| 782 | #undef isnormal |
| 783 | |
| 784 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 785 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 786 | typename enable_if<is_floating_point<_A1>::value, bool>::type |
| 787 | isnormal(_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 | |
| 800 | template <class _A1, class _A2> |
| 801 | _LIBCPP_ALWAYS_INLINE |
| 802 | bool |
| 803 | __libcpp_isgreater(_A1 __x, _A2 __y) |
| 804 | { |
| 805 | return isgreater(__x, __y); |
| 806 | } |
| 807 | |
| 808 | #undef isgreater |
| 809 | |
| 810 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 811 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 812 | typename enable_if |
| 813 | < |
| 814 | is_floating_point<_A1>::value && |
| 815 | is_floating_point<_A2>::value, |
| 816 | bool |
| 817 | >::type |
| 818 | isgreater(_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 | |
| 831 | template <class _A1, class _A2> |
| 832 | _LIBCPP_ALWAYS_INLINE |
| 833 | bool |
| 834 | __libcpp_isgreaterequal(_A1 __x, _A2 __y) |
| 835 | { |
| 836 | return isgreaterequal(__x, __y); |
| 837 | } |
| 838 | |
| 839 | #undef isgreaterequal |
| 840 | |
| 841 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 842 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 843 | typename enable_if |
| 844 | < |
| 845 | is_floating_point<_A1>::value && |
| 846 | is_floating_point<_A2>::value, |
| 847 | bool |
| 848 | >::type |
| 849 | isgreaterequal(_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 | |
| 862 | template <class _A1, class _A2> |
| 863 | _LIBCPP_ALWAYS_INLINE |
| 864 | bool |
| 865 | __libcpp_isless(_A1 __x, _A2 __y) |
| 866 | { |
| 867 | return isless(__x, __y); |
| 868 | } |
| 869 | |
| 870 | #undef isless |
| 871 | |
| 872 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 873 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 874 | typename enable_if |
| 875 | < |
| 876 | is_floating_point<_A1>::value && |
| 877 | is_floating_point<_A2>::value, |
| 878 | bool |
| 879 | >::type |
| 880 | isless(_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 | |
| 893 | template <class _A1, class _A2> |
| 894 | _LIBCPP_ALWAYS_INLINE |
| 895 | bool |
| 896 | __libcpp_islessequal(_A1 __x, _A2 __y) |
| 897 | { |
| 898 | return islessequal(__x, __y); |
| 899 | } |
| 900 | |
| 901 | #undef islessequal |
| 902 | |
| 903 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 904 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 905 | typename enable_if |
| 906 | < |
| 907 | is_floating_point<_A1>::value && |
| 908 | is_floating_point<_A2>::value, |
| 909 | bool |
| 910 | >::type |
| 911 | islessequal(_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 | |
| 924 | template <class _A1, class _A2> |
| 925 | _LIBCPP_ALWAYS_INLINE |
| 926 | bool |
| 927 | __libcpp_islessgreater(_A1 __x, _A2 __y) |
| 928 | { |
| 929 | return islessgreater(__x, __y); |
| 930 | } |
| 931 | |
| 932 | #undef islessgreater |
| 933 | |
| 934 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 935 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 936 | typename enable_if |
| 937 | < |
| 938 | is_floating_point<_A1>::value && |
| 939 | is_floating_point<_A2>::value, |
| 940 | bool |
| 941 | >::type |
| 942 | islessgreater(_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 | |
| 955 | template <class _A1, class _A2> |
| 956 | _LIBCPP_ALWAYS_INLINE |
| 957 | bool |
| 958 | __libcpp_isunordered(_A1 __x, _A2 __y) |
| 959 | { |
| 960 | return isunordered(__x, __y); |
| 961 | } |
| 962 | |
| 963 | #undef isunordered |
| 964 | |
| 965 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 966 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 967 | typename enable_if |
| 968 | < |
| 969 | is_floating_point<_A1>::value && |
| 970 | is_floating_point<_A2>::value, |
| 971 | bool |
| 972 | >::type |
| 973 | isunordered(_A1 __x, _A2 __y) |
| 974 | { |
| 975 | return __libcpp_isunordered(__x, __y); |
| 976 | } |
| 977 | |
| 978 | #endif // isunordered |
| 979 | |
| 980 | // acosh |
| 981 | |
| 982 | using ::acosh; |
| 983 | using ::acoshf; |
| 984 | |
| 985 | inline _LIBCPP_INLINE_VISIBILITY float acosh(float __x) {return acoshf(__x);} |
| 986 | inline _LIBCPP_INLINE_VISIBILITY long double acosh(long double __x) {return acoshl(__x);} |
| 987 | |
| 988 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 989 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 990 | typename enable_if<is_integral<_A1>::value, double>::type |
| 991 | acosh(_A1 __x) {return acosh((double)__x);} |
| 992 | |
| 993 | // asinh |
| 994 | |
| 995 | using ::asinh; |
| 996 | using ::asinhf; |
| 997 | |
| 998 | inline _LIBCPP_INLINE_VISIBILITY float asinh(float __x) {return asinhf(__x);} |
| 999 | inline _LIBCPP_INLINE_VISIBILITY long double asinh(long double __x) {return asinhl(__x);} |
| 1000 | |
| 1001 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1002 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1003 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1004 | asinh(_A1 __x) {return asinh((double)__x);} |
| 1005 | |
| 1006 | // atanh |
| 1007 | |
| 1008 | using ::atanh; |
| 1009 | using ::atanhf; |
| 1010 | |
| 1011 | inline _LIBCPP_INLINE_VISIBILITY float atanh(float __x) {return atanhf(__x);} |
| 1012 | inline _LIBCPP_INLINE_VISIBILITY long double atanh(long double __x) {return atanhl(__x);} |
| 1013 | |
| 1014 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1015 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1016 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1017 | atanh(_A1 __x) {return atanh((double)__x);} |
| 1018 | |
| 1019 | // cbrt |
| 1020 | |
| 1021 | using ::cbrt; |
| 1022 | using ::cbrtf; |
| 1023 | |
| 1024 | inline _LIBCPP_INLINE_VISIBILITY float cbrt(float __x) {return cbrtf(__x);} |
| 1025 | inline _LIBCPP_INLINE_VISIBILITY long double cbrt(long double __x) {return cbrtl(__x);} |
| 1026 | |
| 1027 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1028 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1029 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1030 | cbrt(_A1 __x) {return cbrt((double)__x);} |
| 1031 | |
| 1032 | // copysign |
| 1033 | |
| 1034 | using ::copysign; |
| 1035 | using ::copysignf; |
| 1036 | |
| 1037 | inline _LIBCPP_INLINE_VISIBILITY float copysign(float __x, float __y) {return copysignf(__x, __y);} |
| 1038 | inline _LIBCPP_INLINE_VISIBILITY long double copysign(long double __x, long double __y) {return copysignl(__x, __y);} |
| 1039 | |
| 1040 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1041 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1042 | typename enable_if |
| 1043 | < |
| 1044 | is_arithmetic<_A1>::value && |
| 1045 | is_arithmetic<_A2>::value, |
| 1046 | typename __promote<_A1, _A2>::type |
| 1047 | >::type |
| 1048 | copysign(_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 | |
| 1058 | using ::erf; |
| 1059 | using ::erff; |
| 1060 | |
| 1061 | inline _LIBCPP_INLINE_VISIBILITY float erf(float __x) {return erff(__x);} |
| 1062 | inline _LIBCPP_INLINE_VISIBILITY long double erf(long double __x) {return erfl(__x);} |
| 1063 | |
| 1064 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1065 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1066 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1067 | erf(_A1 __x) {return erf((double)__x);} |
| 1068 | |
| 1069 | // erfc |
| 1070 | |
| 1071 | using ::erfc; |
| 1072 | using ::erfcf; |
| 1073 | |
| 1074 | inline _LIBCPP_INLINE_VISIBILITY float erfc(float __x) {return erfcf(__x);} |
| 1075 | inline _LIBCPP_INLINE_VISIBILITY long double erfc(long double __x) {return erfcl(__x);} |
| 1076 | |
| 1077 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1078 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1079 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1080 | erfc(_A1 __x) {return erfc((double)__x);} |
| 1081 | |
| 1082 | // exp2 |
| 1083 | |
| 1084 | using ::exp2; |
| 1085 | using ::exp2f; |
| 1086 | |
| 1087 | inline _LIBCPP_INLINE_VISIBILITY float exp2(float __x) {return exp2f(__x);} |
| 1088 | inline _LIBCPP_INLINE_VISIBILITY long double exp2(long double __x) {return exp2l(__x);} |
| 1089 | |
| 1090 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1091 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1092 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1093 | exp2(_A1 __x) {return exp2((double)__x);} |
| 1094 | |
| 1095 | // expm1 |
| 1096 | |
| 1097 | using ::expm1; |
| 1098 | using ::expm1f; |
| 1099 | |
| 1100 | inline _LIBCPP_INLINE_VISIBILITY float expm1(float __x) {return expm1f(__x);} |
| 1101 | inline _LIBCPP_INLINE_VISIBILITY long double expm1(long double __x) {return expm1l(__x);} |
| 1102 | |
| 1103 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1104 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1105 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1106 | expm1(_A1 __x) {return expm1((double)__x);} |
| 1107 | |
| 1108 | // fdim |
| 1109 | |
| 1110 | using ::fdim; |
| 1111 | using ::fdimf; |
| 1112 | |
| 1113 | inline _LIBCPP_INLINE_VISIBILITY float fdim(float __x, float __y) {return fdimf(__x, __y);} |
| 1114 | inline _LIBCPP_INLINE_VISIBILITY long double fdim(long double __x, long double __y) {return fdiml(__x, __y);} |
| 1115 | |
| 1116 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1117 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1118 | typename enable_if |
| 1119 | < |
| 1120 | is_arithmetic<_A1>::value && |
| 1121 | is_arithmetic<_A2>::value, |
| 1122 | typename __promote<_A1, _A2>::type |
| 1123 | >::type |
| 1124 | fdim(_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 | |
| 1134 | inline _LIBCPP_INLINE_VISIBILITY float fmaf(float __x, float __y, float __z) {return (float)((double)__x*__y + __z);} |
| 1135 | #define FP_FAST_FMAF |
| 1136 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1137 | using ::fma; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1138 | |
| 1139 | inline _LIBCPP_INLINE_VISIBILITY float fma(float __x, float __y, float __z) {return fmaf(__x, __y, __z);} |
| 1140 | inline _LIBCPP_INLINE_VISIBILITY long double fma(long double __x, long double __y, long double __z) {return fmal(__x, __y, __z);} |
| 1141 | |
| 1142 | template <class _A1, class _A2, class _A3> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1143 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1144 | typename 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 |
| 1151 | fma(_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 | |
| 1162 | using ::fmax; |
| 1163 | using ::fmaxf; |
| 1164 | |
| 1165 | inline _LIBCPP_INLINE_VISIBILITY float fmax(float __x, float __y) {return fmaxf(__x, __y);} |
| 1166 | inline _LIBCPP_INLINE_VISIBILITY long double fmax(long double __x, long double __y) {return fmaxl(__x, __y);} |
| 1167 | |
| 1168 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1169 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1170 | typename enable_if |
| 1171 | < |
| 1172 | is_arithmetic<_A1>::value && |
| 1173 | is_arithmetic<_A2>::value, |
| 1174 | typename __promote<_A1, _A2>::type |
| 1175 | >::type |
| 1176 | fmax(_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 | |
| 1186 | using ::fmin; |
| 1187 | using ::fminf; |
| 1188 | |
| 1189 | inline _LIBCPP_INLINE_VISIBILITY float fmin(float __x, float __y) {return fminf(__x, __y);} |
| 1190 | inline _LIBCPP_INLINE_VISIBILITY long double fmin(long double __x, long double __y) {return fminl(__x, __y);} |
| 1191 | |
| 1192 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1193 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1194 | typename enable_if |
| 1195 | < |
| 1196 | is_arithmetic<_A1>::value && |
| 1197 | is_arithmetic<_A2>::value, |
| 1198 | typename __promote<_A1, _A2>::type |
| 1199 | >::type |
| 1200 | fmin(_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 | |
| 1210 | using ::hypot; |
| 1211 | using ::hypotf; |
| 1212 | |
| 1213 | inline _LIBCPP_INLINE_VISIBILITY float hypot(float __x, float __y) {return hypotf(__x, __y);} |
| 1214 | inline _LIBCPP_INLINE_VISIBILITY long double hypot(long double __x, long double __y) {return hypotl(__x, __y);} |
| 1215 | |
| 1216 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1217 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1218 | typename enable_if |
| 1219 | < |
| 1220 | is_arithmetic<_A1>::value && |
| 1221 | is_arithmetic<_A2>::value, |
| 1222 | typename __promote<_A1, _A2>::type |
| 1223 | >::type |
| 1224 | hypot(_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 | |
| 1234 | using ::ilogb; |
| 1235 | using ::ilogbf; |
| 1236 | |
| 1237 | inline _LIBCPP_INLINE_VISIBILITY int ilogb(float __x) {return ilogbf(__x);} |
| 1238 | inline _LIBCPP_INLINE_VISIBILITY int ilogb(long double __x) {return ilogbl(__x);} |
| 1239 | |
| 1240 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1241 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1242 | typename enable_if<is_integral<_A1>::value, int>::type |
| 1243 | ilogb(_A1 __x) {return ilogb((double)__x);} |
| 1244 | |
| 1245 | // lgamma |
| 1246 | |
| 1247 | using ::lgamma; |
| 1248 | using ::lgammaf; |
| 1249 | |
| 1250 | inline _LIBCPP_INLINE_VISIBILITY float lgamma(float __x) {return lgammaf(__x);} |
| 1251 | inline _LIBCPP_INLINE_VISIBILITY long double lgamma(long double __x) {return lgammal(__x);} |
| 1252 | |
| 1253 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1254 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1255 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1256 | lgamma(_A1 __x) {return lgamma((double)__x);} |
| 1257 | |
| 1258 | // llrint |
| 1259 | |
| 1260 | using ::llrint; |
| 1261 | using ::llrintf; |
| 1262 | |
| 1263 | inline _LIBCPP_INLINE_VISIBILITY long long llrint(float __x) {return llrintf(__x);} |
| 1264 | inline _LIBCPP_INLINE_VISIBILITY long long llrint(long double __x) {return llrintl(__x);} |
| 1265 | |
| 1266 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1267 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1268 | typename enable_if<is_integral<_A1>::value, long long>::type |
| 1269 | llrint(_A1 __x) {return llrint((double)__x);} |
| 1270 | |
| 1271 | // llround |
| 1272 | |
| 1273 | using ::llround; |
| 1274 | using ::llroundf; |
| 1275 | |
| 1276 | inline _LIBCPP_INLINE_VISIBILITY long long llround(float __x) {return llroundf(__x);} |
| 1277 | inline _LIBCPP_INLINE_VISIBILITY long long llround(long double __x) {return llroundl(__x);} |
| 1278 | |
| 1279 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1280 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1281 | typename enable_if<is_integral<_A1>::value, long long>::type |
| 1282 | llround(_A1 __x) {return llround((double)__x);} |
| 1283 | |
| 1284 | // log1p |
| 1285 | |
| 1286 | using ::log1p; |
| 1287 | using ::log1pf; |
| 1288 | |
| 1289 | inline _LIBCPP_INLINE_VISIBILITY float log1p(float __x) {return log1pf(__x);} |
| 1290 | inline _LIBCPP_INLINE_VISIBILITY long double log1p(long double __x) {return log1pl(__x);} |
| 1291 | |
| 1292 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1293 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1294 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1295 | log1p(_A1 __x) {return log1p((double)__x);} |
| 1296 | |
| 1297 | // log2 |
| 1298 | |
| 1299 | using ::log2; |
| 1300 | using ::log2f; |
| 1301 | |
| 1302 | inline _LIBCPP_INLINE_VISIBILITY float log2(float __x) {return log2f(__x);} |
| 1303 | inline _LIBCPP_INLINE_VISIBILITY long double log2(long double __x) {return log2l(__x);} |
| 1304 | |
| 1305 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1306 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1307 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1308 | log2(_A1 __x) {return log2((double)__x);} |
| 1309 | |
| 1310 | // logb |
| 1311 | |
| 1312 | using ::logb; |
| 1313 | using ::logbf; |
| 1314 | |
| 1315 | inline _LIBCPP_INLINE_VISIBILITY float logb(float __x) {return logbf(__x);} |
| 1316 | inline _LIBCPP_INLINE_VISIBILITY long double logb(long double __x) {return logbl(__x);} |
| 1317 | |
| 1318 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1319 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1320 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1321 | logb(_A1 __x) {return logb((double)__x);} |
| 1322 | |
| 1323 | // lrint |
| 1324 | |
| 1325 | using ::lrint; |
| 1326 | using ::lrintf; |
| 1327 | |
| 1328 | inline _LIBCPP_INLINE_VISIBILITY long lrint(float __x) {return lrintf(__x);} |
| 1329 | inline _LIBCPP_INLINE_VISIBILITY long lrint(long double __x) {return lrintl(__x);} |
| 1330 | |
| 1331 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1332 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1333 | typename enable_if<is_integral<_A1>::value, long>::type |
| 1334 | lrint(_A1 __x) {return lrint((double)__x);} |
| 1335 | |
| 1336 | // lround |
| 1337 | |
| 1338 | using ::lround; |
| 1339 | using ::lroundf; |
| 1340 | |
| 1341 | inline _LIBCPP_INLINE_VISIBILITY long lround(float __x) {return lroundf(__x);} |
| 1342 | inline _LIBCPP_INLINE_VISIBILITY long lround(long double __x) {return lroundl(__x);} |
| 1343 | |
| 1344 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1345 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1346 | typename enable_if<is_integral<_A1>::value, long>::type |
| 1347 | lround(_A1 __x) {return lround((double)__x);} |
| 1348 | |
| 1349 | // nan |
| 1350 | |
| 1351 | using ::nan; |
| 1352 | using ::nanf; |
| 1353 | |
| 1354 | // nearbyint |
| 1355 | |
| 1356 | using ::nearbyint; |
| 1357 | using ::nearbyintf; |
| 1358 | |
| 1359 | inline _LIBCPP_INLINE_VISIBILITY float nearbyint(float __x) {return nearbyintf(__x);} |
| 1360 | inline _LIBCPP_INLINE_VISIBILITY long double nearbyint(long double __x) {return nearbyintl(__x);} |
| 1361 | |
| 1362 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1363 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1364 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1365 | nearbyint(_A1 __x) {return nearbyint((double)__x);} |
| 1366 | |
| 1367 | // nextafter |
| 1368 | |
| 1369 | using ::nextafter; |
| 1370 | using ::nextafterf; |
| 1371 | |
| 1372 | inline _LIBCPP_INLINE_VISIBILITY float nextafter(float __x, float __y) {return nextafterf(__x, __y);} |
| 1373 | inline _LIBCPP_INLINE_VISIBILITY long double nextafter(long double __x, long double __y) {return nextafterl(__x, __y);} |
| 1374 | |
| 1375 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1376 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1377 | typename enable_if |
| 1378 | < |
| 1379 | is_arithmetic<_A1>::value && |
| 1380 | is_arithmetic<_A2>::value, |
| 1381 | typename __promote<_A1, _A2>::type |
| 1382 | >::type |
| 1383 | nextafter(_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 | |
| 1393 | using ::nexttoward; |
| 1394 | using ::nexttowardf; |
| 1395 | |
| 1396 | inline _LIBCPP_INLINE_VISIBILITY float nexttoward(float __x, long double __y) {return nexttowardf(__x, __y);} |
| 1397 | inline _LIBCPP_INLINE_VISIBILITY long double nexttoward(long double __x, long double __y) {return nexttowardl(__x, __y);} |
| 1398 | |
| 1399 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1400 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1401 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1402 | nexttoward(_A1 __x, long double __y) {return nexttoward((double)__x, __y);} |
| 1403 | |
| 1404 | // remainder |
| 1405 | |
| 1406 | using ::remainder; |
| 1407 | using ::remainderf; |
| 1408 | |
| 1409 | inline _LIBCPP_INLINE_VISIBILITY float remainder(float __x, float __y) {return remainderf(__x, __y);} |
| 1410 | inline _LIBCPP_INLINE_VISIBILITY long double remainder(long double __x, long double __y) {return remainderl(__x, __y);} |
| 1411 | |
| 1412 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1413 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1414 | typename enable_if |
| 1415 | < |
| 1416 | is_arithmetic<_A1>::value && |
| 1417 | is_arithmetic<_A2>::value, |
| 1418 | typename __promote<_A1, _A2>::type |
| 1419 | >::type |
| 1420 | remainder(_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 | |
| 1430 | using ::remquo; |
| 1431 | using ::remquof; |
| 1432 | |
| 1433 | inline _LIBCPP_INLINE_VISIBILITY float remquo(float __x, float __y, int* __z) {return remquof(__x, __y, __z);} |
| 1434 | inline _LIBCPP_INLINE_VISIBILITY long double remquo(long double __x, long double __y, int* __z) {return remquol(__x, __y, __z);} |
| 1435 | |
| 1436 | template <class _A1, class _A2> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1437 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1438 | typename enable_if |
| 1439 | < |
| 1440 | is_arithmetic<_A1>::value && |
| 1441 | is_arithmetic<_A2>::value, |
| 1442 | typename __promote<_A1, _A2>::type |
| 1443 | >::type |
| 1444 | remquo(_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 | |
| 1454 | using ::rint; |
| 1455 | using ::rintf; |
| 1456 | |
| 1457 | inline _LIBCPP_INLINE_VISIBILITY float rint(float __x) {return rintf(__x);} |
| 1458 | inline _LIBCPP_INLINE_VISIBILITY long double rint(long double __x) {return rintl(__x);} |
| 1459 | |
| 1460 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1461 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1462 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1463 | rint(_A1 __x) {return rint((double)__x);} |
| 1464 | |
| 1465 | // round |
| 1466 | |
| 1467 | using ::round; |
| 1468 | using ::roundf; |
| 1469 | |
| 1470 | inline _LIBCPP_INLINE_VISIBILITY float round(float __x) {return roundf(__x);} |
| 1471 | inline _LIBCPP_INLINE_VISIBILITY long double round(long double __x) {return roundl(__x);} |
| 1472 | |
| 1473 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1474 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1475 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1476 | round(_A1 __x) {return round((double)__x);} |
| 1477 | |
| 1478 | // scalbln |
| 1479 | |
| 1480 | using ::scalbln; |
| 1481 | using ::scalblnf; |
| 1482 | |
| 1483 | inline _LIBCPP_INLINE_VISIBILITY float scalbln(float __x, long __y) {return scalblnf(__x, __y);} |
| 1484 | inline _LIBCPP_INLINE_VISIBILITY long double scalbln(long double __x, long __y) {return scalblnl(__x, __y);} |
| 1485 | |
| 1486 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1487 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1488 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1489 | scalbln(_A1 __x, long __y) {return scalbln((double)__x, __y);} |
| 1490 | |
| 1491 | // scalbn |
| 1492 | |
| 1493 | using ::scalbn; |
| 1494 | using ::scalbnf; |
| 1495 | |
| 1496 | inline _LIBCPP_INLINE_VISIBILITY float scalbn(float __x, int __y) {return scalbnf(__x, __y);} |
| 1497 | inline _LIBCPP_INLINE_VISIBILITY long double scalbn(long double __x, int __y) {return scalbnl(__x, __y);} |
| 1498 | |
| 1499 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1500 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1501 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1502 | scalbn(_A1 __x, int __y) {return scalbn((double)__x, __y);} |
| 1503 | |
| 1504 | // tgamma |
| 1505 | |
| 1506 | using ::tgamma; |
| 1507 | using ::tgammaf; |
| 1508 | |
| 1509 | inline _LIBCPP_INLINE_VISIBILITY float tgamma(float __x) {return tgammaf(__x);} |
| 1510 | inline _LIBCPP_INLINE_VISIBILITY long double tgamma(long double __x) {return tgammal(__x);} |
| 1511 | |
| 1512 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1513 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1514 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1515 | tgamma(_A1 __x) {return tgamma((double)__x);} |
| 1516 | |
| 1517 | // trunc |
| 1518 | |
| 1519 | using ::trunc; |
| 1520 | using ::truncf; |
| 1521 | |
| 1522 | inline _LIBCPP_INLINE_VISIBILITY float trunc(float __x) {return truncf(__x);} |
| 1523 | inline _LIBCPP_INLINE_VISIBILITY long double trunc(long double __x) {return truncl(__x);} |
| 1524 | |
| 1525 | template <class _A1> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame^] | 1526 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1527 | typename enable_if<is_integral<_A1>::value, double>::type |
| 1528 | trunc(_A1 __x) {return trunc((double)__x);} |
| 1529 | |
| 1530 | using ::acosl; |
| 1531 | using ::asinl; |
| 1532 | using ::atanl; |
| 1533 | using ::atan2l; |
| 1534 | using ::ceill; |
| 1535 | using ::cosl; |
| 1536 | using ::coshl; |
| 1537 | using ::expl; |
| 1538 | using ::fabsl; |
| 1539 | using ::floorl; |
| 1540 | using ::fmodl; |
| 1541 | using ::frexpl; |
| 1542 | using ::ldexpl; |
| 1543 | using ::logl; |
| 1544 | using ::log10l; |
| 1545 | using ::modfl; |
| 1546 | using ::powl; |
| 1547 | using ::sinl; |
| 1548 | using ::sinhl; |
| 1549 | using ::sqrtl; |
| 1550 | using ::tanl; |
| 1551 | using ::tanhl; |
| 1552 | using ::acoshl; |
| 1553 | using ::asinhl; |
| 1554 | using ::atanhl; |
| 1555 | using ::cbrtl; |
| 1556 | using ::copysignl; |
| 1557 | using ::erfl; |
| 1558 | using ::erfcl; |
| 1559 | using ::exp2l; |
| 1560 | using ::expm1l; |
| 1561 | using ::fdiml; |
| 1562 | using ::fmal; |
| 1563 | using ::fmaxl; |
| 1564 | using ::fminl; |
| 1565 | using ::hypotl; |
| 1566 | using ::ilogbl; |
| 1567 | using ::lgammal; |
| 1568 | using ::llrintl; |
| 1569 | using ::llroundl; |
| 1570 | using ::log1pl; |
| 1571 | using ::log2l; |
| 1572 | using ::logbl; |
| 1573 | using ::lrintl; |
| 1574 | using ::lroundl; |
| 1575 | using ::nanl; |
| 1576 | using ::nearbyintl; |
| 1577 | using ::nextafterl; |
| 1578 | using ::nexttowardl; |
| 1579 | using ::remainderl; |
| 1580 | using ::remquol; |
| 1581 | using ::rintl; |
| 1582 | using ::roundl; |
| 1583 | using ::scalblnl; |
| 1584 | using ::scalbnl; |
| 1585 | using ::tgammal; |
| 1586 | using ::truncl; |
| 1587 | |
| 1588 | _LIBCPP_END_NAMESPACE_STD |
| 1589 | |
Howard Hinnant | 60a0a8e | 2010-08-10 20:48:29 +0000 | [diff] [blame] | 1590 | // 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 Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1595 | #endif // _LIBCPP_CMATH |