Home
last modified time | relevance | path

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

12

/third_party/musl/src/math/
Dscalbf.c29 if ( fn > 65000.0f) return scalbnf(x, 65000); in scalbf()
30 if (-fn > 65000.0f) return scalbnf(x,-65000); in scalbf()
31 return scalbnf(x,(int)fn); in scalbf()
Dldexpf.c5 return scalbnf(x, n); in ldexpf()
Dsignificandf.c6 return scalbnf(x, -ilogbf(x)); in significandf()
Dscalblnf.c10 return scalbnf(x, n); in scalblnf()
Dscalbnf.c4 float scalbnf(float x, int n) in scalbnf() function
/third_party/musl/porting/liteos_a/kernel/src/math/
Dscalbf.c29 if ( fn > 65000.0f) return scalbnf(x, 65000); in scalbf()
30 if (-fn > 65000.0f) return scalbnf(x,-65000); in scalbf()
31 return scalbnf(x,(int)fn); in scalbf()
Dldexpf.c5 return scalbnf(x, n); in ldexpf()
Dsignificandf.c6 return scalbnf(x, -ilogbf(x)); in significandf()
Dscalblnf.c10 return scalbnf(x, n); in scalblnf()
Dscalbnf.c4 float scalbnf(float x, int n) in scalbnf() function
/third_party/musl/src/math/i386/
Dscalbnf.s11 .global scalbnf symbol
12 .type scalbnf,@function
13 scalbnf: label
Dldexpf.s1 # see scalbnf.s
Dscalblnf.s1 # see scalbnf.s
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
Dmath_scalbn_test.cpp50 scalbnf(g_scalbnfData[i].input1, g_scalbnfData[i].input2), 1);
62 EXPECT_FLOAT_EQ(40.0f, scalbnf(5.0f, 3));
Dmath_frexp_test.cpp70 EXPECT_FLOAT_EQ(2048.0f, scalbnf(fraction, exponent));
83 EXPECT_FLOAT_EQ(6.3f, scalbnf(fraction, exponent));
/third_party/musl/Benchmark/musl/
Dlibc_math.cpp224 benchmark::DoNotOptimize(scalbnf(x, n)); in Bm_function_Scalbnf1()
234 benchmark::DoNotOptimize(scalbnf(x, n)); in Bm_function_Scalbnf2()
244 benchmark::DoNotOptimize(scalbnf(x, n)); in Bm_function_Scalbnf3()
254 benchmark::DoNotOptimize(scalbnf(x, n)); in Bm_function_Scalbnf4()
/third_party/skia/third_party/externals/harfbuzz/util/
Dfont-options.hh97 int scale_x = (int) scalbnf (font_size_x, subpixel_bits); in post_parse()
98 int scale_y = (int) scalbnf (font_size_y, subpixel_bits); in post_parse()
Doptions.hh238 __inline float scalbnf (float x, int exp) in scalbnf() function
/third_party/musl/libc-test/src/math/
Dscalbnf.c26 y = scalbnf(p->x, p->i); in main()
Dtest_src_math.gni168 "scalbnf",
/third_party/skia/gm/
Dmandoline.cpp127 float T = (0 == fRand.nextU() % 10) ? 0 : scalbnf(1, -(int)fRand.nextRangeU(10, 149)); in chooseChopT()
/third_party/musl/ndk_musl_include/
Dmath.h332 float scalbnf(float, int);
/third_party/musl/libc-test/src/api/
Dmath.c207 {float(*p)(float,int) = scalbnf;} in f()
/third_party/musl/porting/liteos_a/kernel/include/
Dmath.h332 float scalbnf(float, int);
/third_party/musl/include/
Dmath.h332 float scalbnf(float, int);

12