Searched refs:resValue (Results 1 - 6 of 6) sorted by relevance
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/ |
H A D | ets_to_string_cache_test.cpp | 100 auto resValue = std::stod(std::string(res)); in TestMainLoop() local 102 ASSERT(std::abs(resValue - value) < eps); in TestMainLoop() 312 double resValue = 0; in TEST_F() local 317 iss >> resValue; in TEST_F() local 318 correct = std::abs(resValue - value) <= eps; in TEST_F() 326 << "delta: " << std::abs(resValue - value) << "\n" in TEST_F() 348 double resValue = 0; in TEST_F() local 353 iss >> resValue; in TEST_F() local 354 correct = std::abs(resValue - value) <= eps; in TEST_F() 362 << "delta: " << std::abs(resValue in TEST_F() [all...] |
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | rb_tree_node_test.cpp | 66 JSTaggedValue resValue = RBTreeNode::Cast(gValue.GetTaggedObject())->GetValue();
in RBTreeValueCheck() local 67 EXPECT_EQ(resValue, value.GetTaggedValue());
in RBTreeValueCheck()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_tagged_value.cpp | 178 JSHandle<BigInt> resValue = BigInt::GetInt64MaxBigInt(thread); in ToBigInt64() local 180 if (!BigInt::LessThan(int64bitVal.GetTaggedValue(), resValue.GetTaggedValue())) { in ToBigInt64()
|
H A D | js_bigint.cpp | 1573 JSHandle<BigInt> resValue = Exponentiate(thread, base, exponent); in AsintN() local 1576 if (Compare(*resValue, *modValue) != ComparisonResult::GREAT) { in AsintN()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_string_stub_builder.cpp | 2451 GateRef resValue = CallRuntime(glue, RTSTUB_ID(LocaleCompareCacheable), {locales, thisValue, arg0});
in LocaleCompare() local 2452 BRANCH(TaggedIsUndefined(resValue), &uncacheable, &defvalue);
in LocaleCompare() 2454 *res = resValue;
in LocaleCompare()
|
/arkcompiler/ets_runtime/ecmascript/serializer/tests/ |
H A D | serializer_test.cpp | 536 JSHandle<JSTaggedValue> resValue(thread, resMap->GetValue(i)); in JSMapTest() 543 EXPECT_TRUE(JSTaggedValue::ToInt32(thread, resValue) == JSTaggedValue::ToInt32(thread, value)) in JSMapTest()
|
Completed in 19 milliseconds