Lines Matching refs:__x

319 __libcpp_signbit(_A1 __x) _NOEXCEPT
321 return signbit(__x);
329 signbit(_A1 __x) _NOEXCEPT
331 return __libcpp_signbit((typename std::__promote<_A1>::type)__x);
343 __libcpp_fpclassify(_A1 __x) _NOEXCEPT
345 return fpclassify(__x);
353 fpclassify(_A1 __x) _NOEXCEPT
355 return __libcpp_fpclassify((typename std::__promote<_A1>::type)__x);
367 __libcpp_isfinite(_A1 __x) _NOEXCEPT
369 return isfinite(__x);
377 isfinite(_A1 __x) _NOEXCEPT
379 return __libcpp_isfinite((typename std::__promote<_A1>::type)__x);
391 __libcpp_isinf(_A1 __x) _NOEXCEPT
393 return isinf(__x);
401 isinf(_A1 __x) _NOEXCEPT
403 return __libcpp_isinf((typename std::__promote<_A1>::type)__x);
415 __libcpp_isnan(_A1 __x) _NOEXCEPT
417 return isnan(__x);
425 isnan(_A1 __x) _NOEXCEPT
427 return __libcpp_isnan((typename std::__promote<_A1>::type)__x);
439 __libcpp_isnormal(_A1 __x) _NOEXCEPT
441 return isnormal(__x);
449 isnormal(_A1 __x) _NOEXCEPT
451 return __libcpp_isnormal((typename std::__promote<_A1>::type)__x);
463 __libcpp_isgreater(_A1 __x, _A2 __y) _NOEXCEPT
465 return isgreater(__x, __y);
478 isgreater(_A1 __x, _A2 __y) _NOEXCEPT
481 return __libcpp_isgreater((type)__x, (type)__y);
493 __libcpp_isgreaterequal(_A1 __x, _A2 __y) _NOEXCEPT
495 return isgreaterequal(__x, __y);
508 isgreaterequal(_A1 __x, _A2 __y) _NOEXCEPT
511 return __libcpp_isgreaterequal((type)__x, (type)__y);
523 __libcpp_isless(_A1 __x, _A2 __y) _NOEXCEPT
525 return isless(__x, __y);
538 isless(_A1 __x, _A2 __y) _NOEXCEPT
541 return __libcpp_isless((type)__x, (type)__y);
553 __libcpp_islessequal(_A1 __x, _A2 __y) _NOEXCEPT
555 return islessequal(__x, __y);
568 islessequal(_A1 __x, _A2 __y) _NOEXCEPT
571 return __libcpp_islessequal((type)__x, (type)__y);
583 __libcpp_islessgreater(_A1 __x, _A2 __y) _NOEXCEPT
585 return islessgreater(__x, __y);
598 islessgreater(_A1 __x, _A2 __y) _NOEXCEPT
601 return __libcpp_islessgreater((type)__x, (type)__y);
613 __libcpp_isunordered(_A1 __x, _A2 __y) _NOEXCEPT
615 return isunordered(__x, __y);
628 isunordered(_A1 __x, _A2 __y) _NOEXCEPT
631 return __libcpp_isunordered((type)__x, (type)__y);
660 abs(float __x) _NOEXCEPT {return fabsf(__x);}
664 abs(double __x) _NOEXCEPT {return fabs(__x);}
668 abs(long double __x) _NOEXCEPT {return fabsl(__x);}
679 inline _LIBCPP_INLINE_VISIBILITY float acos(float __x) _NOEXCEPT {return acosf(__x);}
680 inline _LIBCPP_INLINE_VISIBILITY long double acos(long double __x) _NOEXCEPT {return acosl(__x);}
686 acos(_A1 __x) _NOEXCEPT {return acos((double)__x);}
694 inline _LIBCPP_INLINE_VISIBILITY float asin(float __x) _NOEXCEPT {return asinf(__x);}
695 inline _LIBCPP_INLINE_VISIBILITY long double asin(long double __x) _NOEXCEPT {return asinl(__x);}
701 asin(_A1 __x) _NOEXCEPT {return asin((double)__x);}
709 inline _LIBCPP_INLINE_VISIBILITY float atan(float __x) _NOEXCEPT {return atanf(__x);}
710 inline _LIBCPP_INLINE_VISIBILITY long double atan(long double __x) _NOEXCEPT {return atanl(__x);}
716 atan(_A1 __x) _NOEXCEPT {return atan((double)__x);}
724 …LINE_VISIBILITY float atan2(float __y, float __x) _NOEXCEPT {return atan2f(__y,
725 …VISIBILITY long double atan2(long double __y, long double __x) _NOEXCEPT {return atan2l(__y, __x);}
736 atan2(_A1 __y, _A2 __x) _NOEXCEPT
741 return atan2((__result_type)__y, (__result_type)__x);
750 inline _LIBCPP_INLINE_VISIBILITY float ceil(float __x) _NOEXCEPT {return ceilf(__x);}
751 inline _LIBCPP_INLINE_VISIBILITY long double ceil(long double __x) _NOEXCEPT {return ceill(__x);}
757 ceil(_A1 __x) _NOEXCEPT {return ceil((double)__x);}
765 inline _LIBCPP_INLINE_VISIBILITY float cos(float __x) _NOEXCEPT {return cosf(__x);}
766 inline _LIBCPP_INLINE_VISIBILITY long double cos(long double __x) _NOEXCEPT {return cosl(__x);}
772 cos(_A1 __x) _NOEXCEPT {return cos((double)__x);}
780 inline _LIBCPP_INLINE_VISIBILITY float cosh(float __x) _NOEXCEPT {return coshf(__x);}
781 inline _LIBCPP_INLINE_VISIBILITY long double cosh(long double __x) _NOEXCEPT {return coshl(__x);}
787 cosh(_A1 __x) _NOEXCEPT {return cosh((double)__x);}
798 inline _LIBCPP_INLINE_VISIBILITY float exp(float __x) _NOEXCEPT {return expf(__x);}
799 inline _LIBCPP_INLINE_VISIBILITY long double exp(long double __x) _NOEXCEPT {return expl(__x);}
806 exp(_A1 __x) _NOEXCEPT {return exp((double)__x);}
814 inline _LIBCPP_INLINE_VISIBILITY float fabs(float __x) _NOEXCEPT {return fabsf(__x);}
815 inline _LIBCPP_INLINE_VISIBILITY long double fabs(long double __x) _NOEXCEPT {return fabsl(__x);}
821 fabs(_A1 __x) _NOEXCEPT {return fabs((double)__x);}
829 inline _LIBCPP_INLINE_VISIBILITY float floor(float __x) _NOEXCEPT {return floorf(__x);}
830 inline _LIBCPP_INLINE_VISIBILITY long double floor(long double __x) _NOEXCEPT {return floorl(__x);}
836 floor(_A1 __x) _NOEXCEPT {return floor((double)__x);}
846 …_LIBCPP_INLINE_VISIBILITY float fmod(float __x, float __y) _NOEXCEPT {return fmo…
847 …BCPP_INLINE_VISIBILITY long double fmod(long double __x, long double __y) _NOEXCEPT {return fmodl(
858 fmod(_A1 __x, _A2 __y) _NOEXCEPT
863 return fmod((__result_type)__x, (__result_type)__y);
873 …e _LIBCPP_INLINE_VISIBILITY float frexp(float __x, int* __e) _NOEXCEPT {return frexpf(
874 …LIBCPP_INLINE_VISIBILITY long double frexp(long double __x, int* __e) _NOEXCEPT {return frexpl(__x
880 frexp(_A1 __x, int* __e) _NOEXCEPT {return frexp((double)__x, __e);}
888 …e _LIBCPP_INLINE_VISIBILITY float ldexp(float __x, int __e) _NOEXCEPT {return ldexpf(_…
889 …LIBCPP_INLINE_VISIBILITY long double ldexp(long double __x, int __e) _NOEXCEPT {return ldexpl(__x,…
895 ldexp(_A1 __x, int __e) _NOEXCEPT {return ldexp((double)__x, __e);}
905 inline _LIBCPP_INLINE_VISIBILITY float log(float __x) _NOEXCEPT {return logf(__x);}
906 inline _LIBCPP_INLINE_VISIBILITY long double log(long double __x) _NOEXCEPT {return logl(__x);}
912 log(_A1 __x) _NOEXCEPT {return log((double)__x);}
921 inline _LIBCPP_INLINE_VISIBILITY float log10(float __x) _NOEXCEPT {return log10f(__x);}
922 inline _LIBCPP_INLINE_VISIBILITY long double log10(long double __x) _NOEXCEPT {return log10l(__x);}
928 log10(_A1 __x) _NOEXCEPT {return log10((double)__x);}
936 …LIBCPP_INLINE_VISIBILITY float modf(float __x, float* __y) _NOEXCEPT {return mod…
937 …CPP_INLINE_VISIBILITY long double modf(long double __x, long double* __y) _NOEXCEPT {return modfl(
949 … _LIBCPP_INLINE_VISIBILITY float pow(float __x, float __y) _NOEXCEPT {return pow…
950 …IBCPP_INLINE_VISIBILITY long double pow(long double __x, long double __y) _NOEXCEPT {return powl(_…
961 pow(_A1 __x, _A2 __y) _NOEXCEPT
966 return pow((__result_type)__x, (__result_type)__y);
975 inline _LIBCPP_INLINE_VISIBILITY float sin(float __x) _NOEXCEPT {return sinf(__x);}
976 inline _LIBCPP_INLINE_VISIBILITY long double sin(long double __x) _NOEXCEPT {return sinl(__x);}
982 sin(_A1 __x) _NOEXCEPT {return sin((double)__x);}
990 inline _LIBCPP_INLINE_VISIBILITY float sinh(float __x) _NOEXCEPT {return sinhf(__x);}
991 inline _LIBCPP_INLINE_VISIBILITY long double sinh(long double __x) _NOEXCEPT {return sinhl(__x);}
997 sinh(_A1 __x) _NOEXCEPT {return sinh((double)__x);}
1007 inline _LIBCPP_INLINE_VISIBILITY float sqrt(float __x) _NOEXCEPT {return sqrtf(__x);}
1008 inline _LIBCPP_INLINE_VISIBILITY long double sqrt(long double __x) _NOEXCEPT {return sqrtl(__x);}
1014 sqrt(_A1 __x) _NOEXCEPT {return sqrt((double)__x);}
1023 inline _LIBCPP_INLINE_VISIBILITY float tan(float __x) _NOEXCEPT {return tanf(__x);}
1024 inline _LIBCPP_INLINE_VISIBILITY long double tan(long double __x) _NOEXCEPT {return tanl(__x);}
1030 tan(_A1 __x) _NOEXCEPT {return tan((double)__x);}
1038 inline _LIBCPP_INLINE_VISIBILITY float tanh(float __x) _NOEXCEPT {return tanhf(__x);}
1039 inline _LIBCPP_INLINE_VISIBILITY long double tanh(long double __x) _NOEXCEPT {return tanhl(__x);}
1045 tanh(_A1 __x) _NOEXCEPT {return tanh((double)__x);}
1053 inline _LIBCPP_INLINE_VISIBILITY float acosh(float __x) _NOEXCEPT {return acoshf(__x);}
1054 inline _LIBCPP_INLINE_VISIBILITY long double acosh(long double __x) _NOEXCEPT {return acoshl(__x);}
1059 acosh(_A1 __x) _NOEXCEPT {return acosh((double)__x);}
1068 inline _LIBCPP_INLINE_VISIBILITY float asinh(float __x) _NOEXCEPT {return asinhf(__x);}
1069 inline _LIBCPP_INLINE_VISIBILITY long double asinh(long double __x) _NOEXCEPT {return asinhl(__x);}
1074 asinh(_A1 __x) _NOEXCEPT {return asinh((double)__x);}
1083 inline _LIBCPP_INLINE_VISIBILITY float atanh(float __x) _NOEXCEPT {return atanhf(__x);}
1084 inline _LIBCPP_INLINE_VISIBILITY long double atanh(long double __x) _NOEXCEPT {return atanhl(__x);}
1089 atanh(_A1 __x) _NOEXCEPT {return atanh((double)__x);}
1098 inline _LIBCPP_INLINE_VISIBILITY float cbrt(float __x) _NOEXCEPT {return cbrtf(__x);}
1099 inline _LIBCPP_INLINE_VISIBILITY long double cbrt(long double __x) _NOEXCEPT {return cbrtl(__x);}
1104 cbrt(_A1 __x) _NOEXCEPT {return cbrt((double)__x);}
1112 …P_INLINE_VISIBILITY float copysign(float __x, float __y) _NOEXCEPT {return copys…
1113 …NLINE_VISIBILITY long double copysign(long double __x, long double __y) _NOEXCEPT {return copysign…
1123 copysign(_A1 __x, _A2 __y) _NOEXCEPT
1128 return copysign((__result_type)__x, (__result_type)__y);
1138 inline _LIBCPP_INLINE_VISIBILITY float erf(float __x) _NOEXCEPT {return erff(__x);}
1139 inline _LIBCPP_INLINE_VISIBILITY long double erf(long double __x) _NOEXCEPT {return erfl(__x);}
1144 erf(_A1 __x) _NOEXCEPT {return erf((double)__x);}
1151 inline _LIBCPP_INLINE_VISIBILITY float erfc(float __x) _NOEXCEPT {return erfcf(__x);}
1152 inline _LIBCPP_INLINE_VISIBILITY long double erfc(long double __x) _NOEXCEPT {return erfcl(__x);}
1157 erfc(_A1 __x) _NOEXCEPT {return erfc((double)__x);}
1164 inline _LIBCPP_INLINE_VISIBILITY float exp2(float __x) _NOEXCEPT {return exp2f(__x);}
1165 inline _LIBCPP_INLINE_VISIBILITY long double exp2(long double __x) _NOEXCEPT {return exp2l(__x);}
1170 exp2(_A1 __x) _NOEXCEPT {return exp2((double)__x);}
1177 inline _LIBCPP_INLINE_VISIBILITY float expm1(float __x) _NOEXCEPT {return expm1f(__x);}
1178 inline _LIBCPP_INLINE_VISIBILITY long double expm1(long double __x) _NOEXCEPT {return expm1l(__x);}
1183 expm1(_A1 __x) _NOEXCEPT {return expm1((double)__x);}
1190 …_LIBCPP_INLINE_VISIBILITY float fdim(float __x, float __y) _NOEXCEPT {return fdi…
1191 …BCPP_INLINE_VISIBILITY long double fdim(long double __x, long double __y) _NOEXCEPT {return fdiml(
1201 fdim(_A1 __x, _A2 __y) _NOEXCEPT
1206 return fdim((__result_type)__x, (__result_type)__y);
1214 …_INLINE_VISIBILITY float fma(float __x, float __y, float __z) _NOEXCEPT {r…
1215 …LINE_VISIBILITY long double fma(long double __x, long double __y, long double __z) _NOEXCEPT {retu…
1226 fma(_A1 __x, _A2 __y, _A3 __z) _NOEXCEPT
1232 return fma((__result_type)__x, (__result_type)__y, (__result_type)__z);
1240 …_LIBCPP_INLINE_VISIBILITY float fmax(float __x, float __y) _NOEXCEPT {return fma…
1241 …BCPP_INLINE_VISIBILITY long double fmax(long double __x, long double __y) _NOEXCEPT {return fmaxl(
1251 fmax(_A1 __x, _A2 __y) _NOEXCEPT
1256 return fmax((__result_type)__x, (__result_type)__y);
1264 …_LIBCPP_INLINE_VISIBILITY float fmin(float __x, float __y) _NOEXCEPT {return fmi…
1265 …BCPP_INLINE_VISIBILITY long double fmin(long double __x, long double __y) _NOEXCEPT {return fminl(
1275 fmin(_A1 __x, _A2 __y) _NOEXCEPT
1280 return fmin((__result_type)__x, (__result_type)__y);
1288 …IBCPP_INLINE_VISIBILITY float hypot(float __x, float __y) _NOEXCEPT {return hypo…
1289 …PP_INLINE_VISIBILITY long double hypot(long double __x, long double __y) _NOEXCEPT {return hypotl(
1299 hypot(_A1 __x, _A2 __y) _NOEXCEPT
1304 return hypot((__result_type)__x, (__result_type)__y);
1312 inline _LIBCPP_INLINE_VISIBILITY int ilogb(float __x) _NOEXCEPT {return ilogbf(__x);}
1313 inline _LIBCPP_INLINE_VISIBILITY int ilogb(long double __x) _NOEXCEPT {return ilogbl(__x);}
1318 ilogb(_A1 __x) _NOEXCEPT {return ilogb((double)__x);}
1325 inline _LIBCPP_INLINE_VISIBILITY float lgamma(float __x) _NOEXCEPT {return lgammaf(__x)…
1326 inline _LIBCPP_INLINE_VISIBILITY long double lgamma(long double __x) _NOEXCEPT {return lgammal(__x)…
1332 lgamma(_A1 __x) _NOEXCEPT {return lgamma((double)__x);}
1340 inline _LIBCPP_INLINE_VISIBILITY long long llrint(float __x) _NOEXCEPT {return llrintf(__x);}
1341 inline _LIBCPP_INLINE_VISIBILITY long long llrint(long double __x) _NOEXCEPT {return llrintl(__x);}
1346 llrint(_A1 __x) _NOEXCEPT {return llrint((double)__x);}
1353 inline _LIBCPP_INLINE_VISIBILITY long long llround(float __x) _NOEXCEPT {return llroundf(__x)…
1354 inline _LIBCPP_INLINE_VISIBILITY long long llround(long double __x) _NOEXCEPT {return llroundl(__x)…
1359 llround(_A1 __x) _NOEXCEPT {return llround((double)__x);}
1366 inline _LIBCPP_INLINE_VISIBILITY float log1p(float __x) _NOEXCEPT {return log1pf(__x);}
1367 inline _LIBCPP_INLINE_VISIBILITY long double log1p(long double __x) _NOEXCEPT {return log1pl(__x);}
1372 log1p(_A1 __x) _NOEXCEPT {return log1p((double)__x);}
1379 inline _LIBCPP_INLINE_VISIBILITY float log2(float __x) _NOEXCEPT {return log2f(__x);}
1380 inline _LIBCPP_INLINE_VISIBILITY long double log2(long double __x) _NOEXCEPT {return log2l(__x);}
1385 log2(_A1 __x) _NOEXCEPT {return log2((double)__x);}
1392 inline _LIBCPP_INLINE_VISIBILITY float logb(float __x) _NOEXCEPT {return logbf(__x);}
1393 inline _LIBCPP_INLINE_VISIBILITY long double logb(long double __x) _NOEXCEPT {return logbl(__x);}
1398 logb(_A1 __x) _NOEXCEPT {return logb((double)__x);}
1405 inline _LIBCPP_INLINE_VISIBILITY long lrint(float __x) _NOEXCEPT {return lrintf(__x);}
1406 inline _LIBCPP_INLINE_VISIBILITY long lrint(long double __x) _NOEXCEPT {return lrintl(__x);}
1411 lrint(_A1 __x) _NOEXCEPT {return lrint((double)__x);}
1418 inline _LIBCPP_INLINE_VISIBILITY long lround(float __x) _NOEXCEPT {return lroundf(__x);}
1419 inline _LIBCPP_INLINE_VISIBILITY long lround(long double __x) _NOEXCEPT {return lroundl(__x);}
1424 lround(_A1 __x) _NOEXCEPT {return lround((double)__x);}
1444 … _LIBCPP_INLINE_VISIBILITY float nearbyint(float __x) _NOEXCEPT {return nearbyintf(__x
1445 …LIBCPP_INLINE_VISIBILITY long double nearbyint(long double __x) _NOEXCEPT {return nearbyintl(__x);}
1450 nearbyint(_A1 __x) _NOEXCEPT {return nearbyint((double)__x);}
1457 …INLINE_VISIBILITY float nextafter(float __x, float __y) _NOEXCEPT {return nextaf…
1458 …INE_VISIBILITY long double nextafter(long double __x, long double __y) _NOEXCEPT {return nextafter…
1468 nextafter(_A1 __x, _A2 __y) _NOEXCEPT
1473 return nextafter((__result_type)__x, (__result_type)__y);
1481 …NLINE_VISIBILITY float nexttoward(float __x, long double __y) _NOEXCEPT {return nextto…
1482 …NE_VISIBILITY long double nexttoward(long double __x, long double __y) _NOEXCEPT {return nexttowar…
1487 nexttoward(_A1 __x, long double __y) _NOEXCEPT {return nexttoward((double)__x, __y);}
1494 …INLINE_VISIBILITY float remainder(float __x, float __y) _NOEXCEPT {return remain…
1495 …INE_VISIBILITY long double remainder(long double __x, long double __y) _NOEXCEPT {return remainder…
1505 remainder(_A1 __x, _A2 __y) _NOEXCEPT
1510 return remainder((__result_type)__x, (__result_type)__y);
1518 …INLINE_VISIBILITY float remquo(float __x, float __y, int* __z) _NOEXCEPT {return…
1519 …INE_VISIBILITY long double remquo(long double __x, long double __y, int* __z) _NOEXCEPT {return re…
1529 remquo(_A1 __x, _A2 __y, int* __z) _NOEXCEPT
1534 return remquo((__result_type)__x, (__result_type)__y, __z);
1542 inline _LIBCPP_INLINE_VISIBILITY float rint(float __x) _NOEXCEPT {return rintf(__x);}
1543 inline _LIBCPP_INLINE_VISIBILITY long double rint(long double __x) _NOEXCEPT {return rintl(__x);}
1548 rint(_A1 __x) _NOEXCEPT {return rint((double)__x);}
1555 inline _LIBCPP_INLINE_VISIBILITY float round(float __x) _NOEXCEPT {return roundf(__x);}
1556 inline _LIBCPP_INLINE_VISIBILITY long double round(long double __x) _NOEXCEPT {return roundl(__x);}
1561 round(_A1 __x) _NOEXCEPT {return round((double)__x);}
1568 …LIBCPP_INLINE_VISIBILITY float scalbln(float __x, long __y) _NOEXCEPT {return scalblnf…
1569 …CPP_INLINE_VISIBILITY long double scalbln(long double __x, long __y) _NOEXCEPT {return scalblnl(__…
1574 scalbln(_A1 __x, long __y) _NOEXCEPT {return scalbln((double)__x, __y);}
1581 … _LIBCPP_INLINE_VISIBILITY float scalbn(float __x, int __y) _NOEXCEPT {return scalbnf(
1582 …IBCPP_INLINE_VISIBILITY long double scalbn(long double __x, int __y) _NOEXCEPT {return scalbnl(__x
1587 scalbn(_A1 __x, int __y) _NOEXCEPT {return scalbn((double)__x, __y);}
1594 inline _LIBCPP_INLINE_VISIBILITY float tgamma(float __x) _NOEXCEPT {return tgammaf(__x)…
1595 inline _LIBCPP_INLINE_VISIBILITY long double tgamma(long double __x) _NOEXCEPT {return tgammal(__x)…
1600 tgamma(_A1 __x) _NOEXCEPT {return tgamma((double)__x);}
1607 inline _LIBCPP_INLINE_VISIBILITY float trunc(float __x) _NOEXCEPT {return truncf(__x);}
1608 inline _LIBCPP_INLINE_VISIBILITY long double trunc(long double __x) _NOEXCEPT {return truncl(__x);}
1613 trunc(_A1 __x) _NOEXCEPT {return trunc((double)__x);}