Home
last modified time | relevance | path

Searched refs:Atanh (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/base/tests/
Dmath_helper_test.cpp77 HWTEST_F_L0(MathHelperTest, Atanh) in HWTEST_F_L0() argument
79 EXPECT_EQ(MathHelper::Atanh(0), 0); in HWTEST_F_L0()
80 EXPECT_EQ(MathHelper::Atanh(0.5), std::atanh(0.5)); in HWTEST_F_L0()
82 double infResult = MathHelper::Atanh(-1); // limit value in HWTEST_F_L0()
85 double nanResult = MathHelper::Atanh(2); // out of input range in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/base/
Dmath_helper.h49 static inline double Atanh(double input) in Atanh() function
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_math.h53 static JSTaggedValue Atanh(EcmaRuntimeCallInfo *argv);
Dbuiltins_math.cpp141 JSTaggedValue BuiltinsMath::Atanh(EcmaRuntimeCallInfo *argv) in Atanh() function in panda::ecmascript::builtins::BuiltinsMath
144 BUILTINS_API_TRACE(argv->GetThread(), Math, Atanh); in Atanh()
153 result = base::MathHelper::Atanh(value); in Atanh()
Dbuiltins.cpp1665 SetFunction(env, mathObject, "atanh", Math::Atanh, FunctionLength::ONE); in InitializeMath()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_math_test.cpp1049 HWTEST_F_L0(BuiltinsMathTest, Atanh) in HWTEST_F_L0() argument
1057 JSTaggedValue result = BuiltinsMath::Atanh(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1072 JSTaggedValue result = BuiltinsMath::Atanh(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1087 JSTaggedValue result = BuiltinsMath::Atanh(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1102 JSTaggedValue result = BuiltinsMath::Atanh(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1117 JSTaggedValue result = BuiltinsMath::Atanh(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1132 JSTaggedValue result = BuiltinsMath::Atanh(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1147 JSTaggedValue result = BuiltinsMath::Atanh(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1163 JSTaggedValue result = BuiltinsMath::Atanh(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1179 JSTaggedValue result = BuiltinsMath::Atanh(ecmaRuntimeCallInfo); in HWTEST_F_L0()
[all …]
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h466 V(Math, Atanh) \
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/
Dsnapshot_processor.cpp566 reinterpret_cast<uintptr_t>(Math::Atanh),