Lines Matching refs:float
86 inline _GLIBCXX_CONSTEXPR float
87 acos(float __x)
105 inline _GLIBCXX_CONSTEXPR float
106 asin(float __x)
124 inline _GLIBCXX_CONSTEXPR float
125 atan(float __x)
143 inline _GLIBCXX_CONSTEXPR float
144 atan2(float __y, float __x)
164 inline _GLIBCXX_CONSTEXPR float
165 ceil(float __x)
183 inline _GLIBCXX_CONSTEXPR float
184 cos(float __x)
202 inline _GLIBCXX_CONSTEXPR float
203 cosh(float __x)
221 inline _GLIBCXX_CONSTEXPR float
222 exp(float __x)
240 inline _GLIBCXX_CONSTEXPR float
241 fabs(float __x)
259 inline _GLIBCXX_CONSTEXPR float
260 floor(float __x)
278 inline _GLIBCXX_CONSTEXPR float
279 fmod(float __x, float __y)
299 inline float
300 frexp(float __x, int* __exp)
318 inline _GLIBCXX_CONSTEXPR float
319 ldexp(float __x, int __exp)
337 inline _GLIBCXX_CONSTEXPR float
338 log(float __x)
356 inline _GLIBCXX_CONSTEXPR float
357 log10(float __x)
375 inline float
376 modf(float __x, float* __iptr)
387 inline _GLIBCXX_CONSTEXPR float
388 pow(float __x, float __y)
397 // DR 550. What should the return type of pow(float,int) be?
402 inline float
403 pow(float __x, int __n)
424 inline _GLIBCXX_CONSTEXPR float
425 sin(float __x)
443 inline _GLIBCXX_CONSTEXPR float
444 sinh(float __x)
462 inline _GLIBCXX_CONSTEXPR float
463 sqrt(float __x)
481 inline _GLIBCXX_CONSTEXPR float
482 tan(float __x)
500 inline _GLIBCXX_CONSTEXPR float
501 tanh(float __x)
537 fpclassify(float __x)
562 isfinite(float __x)
584 isinf(float __x)
611 isnan(float __x)
638 isnormal(float __x)
661 signbit(float __x)
683 isgreater(float __x, float __y)
709 isgreaterequal(float __x, float __y)
735 isless(float __x, float __y)
761 islessequal(float __x, float __y)
787 islessgreater(float __x, float __y)
813 isunordered(float __x, float __y)
1213 constexpr float
1214 acosh(float __x)
1231 constexpr float
1232 asinh(float __x)
1249 constexpr float
1250 atanh(float __x)
1267 constexpr float
1268 cbrt(float __x)
1285 constexpr float
1286 copysign(float __x, float __y)
1305 constexpr float
1306 erf(float __x)
1323 constexpr float
1324 erfc(float __x)
1341 constexpr float
1342 exp2(float __x)
1359 constexpr float
1360 expm1(float __x)
1377 constexpr float
1378 fdim(float __x, float __y)
1397 constexpr float
1398 fma(float __x, float __y, float __z)
1417 constexpr float
1418 fmax(float __x, float __y)
1437 constexpr float
1438 fmin(float __x, float __y)
1457 constexpr float
1458 hypot(float __x, float __y)
1478 ilogb(float __x)
1496 constexpr float
1497 lgamma(float __x)
1515 llrint(float __x)
1533 llround(float __x)
1550 constexpr float
1551 log1p(float __x)
1569 constexpr float
1570 log2(float __x)
1587 constexpr float
1588 logb(float __x)
1606 lrint(float __x)
1624 lround(float __x)
1641 constexpr float
1642 nearbyint(float __x)
1659 constexpr float
1660 nextafter(float __x, float __y)
1679 constexpr float
1680 nexttoward(float __x, long double __y)
1697 constexpr float
1698 remainder(float __x, float __y)
1717 inline float
1718 remquo(float __x, float __y, int* __pquo)
1737 constexpr float
1738 rint(float __x)
1755 constexpr float
1756 round(float __x)
1773 constexpr float
1774 scalbln(float __x, long __ex)
1791 constexpr float
1792 scalbn(float __x, int __ex)
1809 constexpr float
1810 tgamma(float __x)
1827 constexpr float
1828 trunc(float __x)
1867 inline float
1868 hypot(float __x, float __y, float __z)
1869 { return std::__hypot3<float>(__x, __y, __z); }
1910 constexpr float
1911 lerp(float __a, float __b, float __t) noexcept