Searched refs:Atanh (Results 1 – 8 of 8) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/base/tests/ |
D | math_helper_test.cpp | 77 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/ |
D | math_helper.h | 49 static inline double Atanh(double input) in Atanh() function
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_math.h | 53 static JSTaggedValue Atanh(EcmaRuntimeCallInfo *argv);
|
D | builtins_math.cpp | 141 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()
|
D | builtins.cpp | 1665 SetFunction(env, mathObject, "atanh", Math::Atanh, FunctionLength::ONE); in InitializeMath()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
D | builtins_math_test.cpp | 1049 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/ |
D | runtime_call_id.h | 466 V(Math, Atanh) \
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
D | snapshot_processor.cpp | 566 reinterpret_cast<uintptr_t>(Math::Atanh),
|