Home
last modified time | relevance | path

Searched refs:scalbnf (Results 1 – 10 of 10) sorted by relevance

/bionic/libm/upstream-freebsd/lib/msun/src/
De_scalbf.c31 return scalbnf(x,fn); in scalbf()
39 if ( fn > (float)65000.0) return scalbnf(x, 65000); in scalbf()
40 if (-fn > (float)65000.0) return scalbnf(x,-65000); in scalbf()
41 return scalbnf(x,(int)fn); in scalbf()
Ds_scalbnf.c12 float scalbnf(float x, int n) in scalbnf() function
41 __strong_reference(scalbnf, ldexpf);
Ds_scalbln.c48 return (scalbnf(x, (n > NMAX) ? NMAX : (n < NMIN) ? NMIN : (int)n)); in scalblnf()
De_powf.c249 if((j>>23)<=0) z = scalbnf(z,n); /* subnormal output */ in powf()
/bionic/tests/
Dmath_test.cpp1416 TEST(math_h, scalbnf) { in TEST() argument
1417 ASSERT_FLOAT_EQ(12.0f, scalbnf(3.0f, 2)); in TEST()
1628 ASSERT_FLOAT_EQ(1024.0f, scalbnf(fr, exp)); in TEST()
1716 ASSERT_FLOAT_EQ(14.1f, scalbnf(fr, exp)); in TEST()
2161 DoMathDataTest<1>(g_scalbnf_intel_data, scalbnf); in TEST()
/bionic/tests/headers/posix/
Dmath_h.c312 FUNCTION(scalbnf, float (*f)(float, int)); in math_h()
/bionic/libm/
Dlibm.map.txt234 scalbnf;
/bionic/libc/include/
Dmath.h177 float scalbnf(float __x, int __exponent);
/bionic/libc/tools/
Dposix-2013.txt872 scalbnf
/bionic/benchmarks/linker_relocation/gen/
Dliblinker_reloc_bench_091.S1385 CALL(scalbnf)