Home
last modified time | relevance | path

Searched refs:expf (Results 1 - 25 of 70) sorted by relevance

123

/third_party/optimized-routines/math/test/
H A Drunulp.sh86 t expf 0 0xffff0000 10000
87 t expf 0x1p-14 0x1p8 50000
88 t expf -0x1p-14 -0x1p8 50000
273 expf __s_expf $runs
274 expf __v_expf $runv
275 expf __vn_expf $runvn
276 expf _ZGVnN4v_expf $runvn
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
H A Dmath_exp_test.cpp42 * @tc.desc: Obtain test data in sequence and check if it is within the expected error range of the expf interface.
49 bool testResult = FloatUlpCmp(g_expfData[i].expected, expf(g_expfData[i].input), 1); in HWTEST_F()
56 * @tc.desc: When the parameter of expf is valid, test the return value of the function.
61 EXPECT_FLOAT_EQ(1.0f, expf(0.0f)); in HWTEST_F()
62 EXPECT_FLOAT_EQ(static_cast<float>(M_E), expf(1.0f)); in HWTEST_F()
/third_party/optimized-routines/math/
H A Dexpf.c34 expf (float x) in expf() function
89 strong_alias (expf, __expf_finite)
90 hidden_alias (expf, __ieee754_expf)
H A Derff.c83 r = expf (-r); in erff()
H A Dv_expf.c49 V_NAME(expf) (v_f32_t x) in expf() function
/third_party/alsa-utils/speaker-test/
H A Dst2095.c64 st2095->hp1_a1 = -2.0 * expf(-0.3826835 * st2095->w0t) * cosf(0.9238795 * st2095->w0t); in initialize_st2095_noise()
65 st2095->hp1_a2 = expf(2.0 * -0.3826835 * st2095->w0t); in initialize_st2095_noise()
70 st2095->hp2_a1 = -2.0 * expf(-0.9238795 * st2095->w0t) * cosf(0.3826835 * st2095->w0t); in initialize_st2095_noise()
71 st2095->hp2_a2 = expf(2.0 * -0.9238795 * st2095->w0t); in initialize_st2095_noise()
/third_party/musl/src/complex/
H A Dcexpf.c47 return CMPLXF(expf(x), y); in cexpf()
69 * overflow in expf(x). in cexpf()
80 exp_x = expf(x); in cexpf()
H A D__cexpf.c44 exp_x = expf(x - kln2); in __frexp_expf()
H A Dctanhf.c56 float exp_mx = expf(-fabsf(x)); in ctanhf()
H A Dccoshf.c57 /* x < 88.7: expf(|x|) won't overflow */ in ccoshf()
58 h = expf(fabsf(x)) * 0.5f; in ccoshf()
H A Dcsinhf.c57 /* x < 88.7: expf(|x|) won't overflow */ in csinhf()
58 h = expf(fabsf(x)) * 0.5f; in csinhf()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test_arit.c299 WRAP(expf)
305 #define expf wrap_expf macro
320 {"exp", &lp_build_exp, &expf, exp2_values, ARRAY_SIZE(exp2_values), 18.0 },
491 if (test->ref == &expf && util_inf_sign(testval) == -1) { in test_unary()
493 * for expf(-inf). As detecting the VC runtime version is in test_unary()
/third_party/ffmpeg/libavfilter/
H A Dvf_grayworld.c118 lms[0] = expf(lms[0]); in lab2rgb()
119 lms[1] = expf(lms[1]); in lab2rgb()
120 lms[2] = expf(lms[2]); in lab2rgb()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A D__expo2f.c7 /* expf(x)/2 for x >= log(FLT_MAX), slightly better than 0.5f*expf(x/2)*expf(x/2) */
16 return expf(x - kln2) * (sign * scale) * scale; in __expo2f()
H A Dcoshf.c26 t = expf(x); in coshf()
H A Derff.c120 return expf(-z*z - 0.5625f) * expf((z-x)*(z+x) + R/S)/x; in erfc2()
H A Dexpf.c33 float expf(float x) in expf() function
/third_party/musl/src/math/
H A D__expo2f.c7 /* expf(x)/2 for x >= log(FLT_MAX), slightly better than 0.5f*expf(x/2)*expf(x/2) */
16 return expf(x - kln2) * (sign * scale) * scale; in __expo2f()
H A Dcoshf.c26 t = expf(x); in coshf()
H A Derff.c120 return expf(-z*z - 0.5625f) * expf((z-x)*(z+x) + R/S)/x; in erfc2()
H A Dexpf.c33 float expf(float x) in expf() function
/third_party/ffmpeg/libavutil/
H A Dffmath.h64 return expf(logf(x) * y); in ff_fast_powf()
H A Dlibm.h282 #undef expf macro
283 #define expf(x) ((float)exp(x)) macro
/third_party/musl/libc-test/src/math/
H A Dexpf.c6 #include "ucb/expf.h"
7 #include "sanity/expf.h"
8 #include "special/expf.h"
27 y = expf(p->x); in main()
31 printf("%s:%d: bad fp exception: %s expf(%a)=%a, want %s", in main()
38 printf("%s:%d: %s expf(%a) want %a got %a ulperr %.3f = %a + %a\n", in main()
/third_party/optimized-routines/math/include/
H A Dmathlib.h11 float expf (float);

Completed in 9 milliseconds

123