Searched refs:scalbnf (Results 1 - 16 of 16) sorted by relevance

/freebsd-12-stable/lib/msun/i387/
H A Ds_scalbnf.S11 ENTRY(scalbnf)
17 END(scalbnf)
20 .set CNAME(ldexpf),CNAME(scalbnf)
/freebsd-12-stable/lib/msun/amd64/
H A Ds_scalbnf.S30 ENTRY(scalbnf)
40 END(scalbnf)
43 .set CNAME(ldexpf),CNAME(scalbnf)
/freebsd-12-stable/lib/msun/src/
H A De_scalbf.c31 return scalbnf(x,fn);
39 if ( fn > (float)65000.0) return scalbnf(x, 65000);
40 if (-fn > (float)65000.0) return scalbnf(x,-65000);
41 return scalbnf(x,(int)fn);
H A Ds_scalbnf.c29 scalbnf (float x, int n) function
57 __strong_reference(scalbnf, ldexpf);
H A Ds_scalbln.c48 return (scalbnf(x, (n > NMAX) ? NMAX : (n < NMIN) ? NMIN : (int)n));
H A De_powf.c249 if((j>>23)<=0) z = scalbnf(z,n); /* subnormal output */
H A Dmath.h403 float scalbnf(float, int);
/freebsd-12-stable/contrib/netbsd-tests/lib/libm/
H A Dt_scalbn.c210 * scalbnf(3)
215 atf_tc_set_md_var(tc, "descr", "Test scalbnf() for a few values");
227 rv = scalbnf(tests[i].inval, tests[i].exp);
240 atf_tc_set_md_var(tc, "descr", "Test scalbnf(NaN, n) == NaN");
252 y = scalbnf(x, exps[i]);
260 atf_tc_set_md_var(tc, "descr", "Test scalbnf(-Inf, n) == -Inf");
269 ATF_CHECK(scalbnf(x, exps[i]) == x);
275 atf_tc_set_md_var(tc, "descr", "Test scalbnf(+Inf, n) == +Inf");
284 ATF_CHECK(scalbnf(x, exps[i]) == x);
290 atf_tc_set_md_var(tc, "descr", "Test scalbnf(
[all...]
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_math.h98 #define crt_scalbnf(x, y) scalbnf((x), (y))
/freebsd-12-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h464 using ::scalbnf;
H A Dtgmath.h1154 __tg_scalbn(float __x, int __y) {return scalbnf(__x, __y);}
H A D__clang_cuda_device_functions.h1721 __DEVICE__ float scalbnf(float __a, int __b) { return __nv_scalbnf(__a, __b); } function
1736 return scalbnf(__a, (int)__b);
/freebsd-12-stable/tools/regression/include/tgmath/
H A Dtgmath.c149 float (scalbnf)(float x, int n) { n_float++; }
/freebsd-12-stable/lib/msun/
H A DMakefile243 MLINKS+=scalbn.3 scalbnf.3 scalbn.3 scalbnl.3
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h281 float scalbnf(float x, int ex);
1532 inline _LIBCPP_INLINE_VISIBILITY float scalbn(float __lcpp_x, int __lcpp_y) _NOEXCEPT {return ::scalbnf(__lcpp_x, __lcpp_y);}
/freebsd-12-stable/contrib/libstdc++/
H A Dconfigure31066 scalbnf(0.0f, 0);
[all...]

Completed in 131 milliseconds