Lines Matching refs:float

50 float          acosf(float x);
54 float asinf(float x);
58 float atanf(float x);
62 float atan2f(float y, float x);
66 float ceilf(float x);
70 float cosf(float x);
74 float coshf(float x);
78 float expf(float x);
82 float fabsf(float x);
86 float floorf(float x);
90 float fmodf(float x, float y);
94 float frexpf(float value, int* exp);
98 float ldexpf(float value, int exp);
102 float logf(float x);
106 float log10f(float x);
110 float modff(float value, float* iptr);
114 float powf(float x, float y);
118 float sinf(float x);
122 float sinhf(float x);
126 float sqrtf(float x);
130 float tanf(float x);
134 float tanhf(float x);
156 float acoshf(float x);
160 float asinhf(float x);
164 float atanhf(float x);
168 float cbrtf(float x);
172 float copysignf(float x, float y);
176 float erff(float x);
180 float erfcf(float x);
184 float exp2f(float x);
188 float expm1f(float x);
192 float fdimf(float x, float y);
196 float fmaf(float x, float y, float z);
200 float fmaxf(float x, float y);
204 float fminf(float x, float y);
208 float hypotf(float x, float y);
212 float hypot(float x, float y, float z); // C++17
216 int ilogbf(float x);
220 float lgammaf(float x);
224 long long llrintf(float x);
228 long long llroundf(float x);
232 float log1pf(float x);
236 float log2f(float x);
240 float logbf(float x);
244 long lrintf(float x);
248 long lroundf(float x);
252 float nanf(const char* str);
256 float nearbyintf(float x);
260 float nextafterf(float x, float y);
264 float nexttowardf(float x, long double y);
268 float remainderf(float x, float y);
272 float remquof(float x, float y, int* pquo);
276 float rintf(float x);
280 float roundf(float x);
284 float scalblnf(float x, long ex);
288 float scalbnf(float x, int ex);
292 float tgammaf(float x);
296 float truncf(float x);
299 constexpr float lerp(float a, float b, float t) noexcept; // C++20
532 inline _LIBCPP_INLINE_VISIBILITY float hypot( float x, float y, float z ) {…
630 constexpr float
631 lerp(float __a, float __b, float __t) _NOEXCEPT { return __lerp(__a, __b, __t); }
649 static_assert((_IsSame<_FloatT, float>::value || _IsSame<_FloatT, double>::value