/arkcompiler/ets_runtime/ecmascript/ |
H A D | linked_hash_table.h | 336 return JSTaggedValue::SameValueZero(key, other); in IsMatch() 377 return JSTaggedValue::SameValueZero(key, other); in IsMatch()
|
H A D | js_bigint.h | 51 static bool SameValueZero(const JSTaggedValue &x, const JSTaggedValue &y);
|
H A D | js_tagged_value-inl.h | 109 inline bool JSTaggedValue::SameValueZero(const JSTaggedValue &x, const JSTaggedValue &y) in SameValueZero() function in panda::ecmascript::JSTaggedValue 128 return BigInt::SameValueZero(x, y); in SameValueZero()
|
H A D | js_tagged_value.h | 411 static bool SameValueZero(const JSTaggedValue &x, const JSTaggedValue &y);
|
H A D | js_bigint.cpp | 238 bool BigInt::SameValueZero(const JSTaggedValue &x, const JSTaggedValue &y) in SameValueZero() function in panda::ecmascript::BigInt
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_bigint_test.cpp | 74 * @tc.name: Equal & SameValue & SameValueZero 92 bool result3 = BigInt::SameValueZero(maxSafeInt.GetTaggedValue(), minSafeInt.GetTaggedValue()); in HWTEST_F_L0() 98 result3 = BigInt::SameValueZero(maxSafeInt.GetTaggedValue(), minusMinSafeInt.GetTaggedValue()); in HWTEST_F_L0() 104 result3 = BigInt::SameValueZero(minSafeInt.GetTaggedValue(), minusMaxSafeInt.GetTaggedValue()); in HWTEST_F_L0() 117 result3 = BigInt::SameValueZero(unsafeInt2.GetTaggedValue(), minusUnsafeInt1.GetTaggedValue()); in HWTEST_F_L0()
|
H A D | tagged_value_test.cpp | 971 HWTEST_F_L0(JSTaggedValueTest, SameValueZero) in HWTEST_F_L0() 973 // SameValueZero differs from SameValue only in its treatment of +0 and -0. in HWTEST_F_L0() 974 ASSERT_TRUE(JSTaggedValue::SameValueZero(JSTaggedValue(0.0), JSTaggedValue(-0.0))); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | linked_hashtable_stub_builder.cpp | 232 return SameValueZero(glue_, key, other); in HashObjectIsMatch()
|
H A D | builtins_typedarray_stub_builder.cpp | 854 GateRef valueEqual = StubBuilder::SameValueZero(glue, searchElement, value);
in Includes()
|
H A D | builtins_array_stub_builder.cpp | 2653 GateRef valueEqual = StubBuilder::SameValueZero(glue, searchElement, value); in Includes()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | stub_builder.h | 507 GateRef SameValueZero(GateRef glue, GateRef left, GateRef right);
|
H A D | stub_builder.cpp | 6241 GateRef StubBuilder::SameValueZero(GateRef glue, GateRef left, GateRef right) in SameValueZero() function in panda::ecmascript::kungfu::StubBuilder
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_shared_array.cpp | 2351 // b. If SameValueZero(searchElement, elementK) is true, return true. in Includes() 2363 if (JSTaggedValue::SameValueZero(searchElement.GetTaggedValue(), kValueHandle.GetTaggedValue())) { in Includes()
|
H A D | builtins_array.cpp | 2976 // b. If SameValueZero(searchElement, elementK) is true, return true. in Includes() 2988 if (JSTaggedValue::SameValueZero(searchElement.GetTaggedValue(), kValueHandle.GetTaggedValue())) { in Includes()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
H A D | runtime_stubs.cpp | 3448 return BigInt::SameValueZero(JSTaggedValue(left), JSTaggedValue(right)); in BigIntSameValueZero()
|