Lines Matching refs:result2

178     auto result2 = BigIntAlgorithm(thread, vals2, 8, AlgorithmType::BIGINT_TOLOCALSTR, bigIntHandle.GetTaggedValue());

180 EXPECT_TRUE(result2.IsString());
181 JSHandle<EcmaString> ecmaStrHandle(thread, result2);
207 auto result2 = BigIntAlgorithm(thread, vals2, 8, AlgorithmType::BIGINT_TOLOCALSTR, bigIntHandle.GetTaggedValue());
209 EXPECT_TRUE(result2.IsString());
210 JSHandle<EcmaString> ecmaStrHandle(thread, result2);
225 auto result2 = BigIntAlgorithm(thread, vals2, 6, AlgorithmType::BIGINT_TOSTR, bigIntHandle.GetTaggedValue());
227 EXPECT_TRUE(result2.IsString());
228 JSHandle<EcmaString> ecmaStrHandle(thread, result2);
243 auto result2 = BigIntAlgorithm(thread, vals2, 6, AlgorithmType::BIGINT_TOSTR, bigIntHandle.GetTaggedValue());
245 EXPECT_TRUE(result2.IsString());
246 JSHandle<EcmaString> ecmaStrHandle(thread, result2);
262 auto result2 = BigIntAlgorithm(thread, vals2, 6, AlgorithmType::BIGINT_TOSTR, bigIntHandle.GetTaggedValue());
264 EXPECT_TRUE(result2.IsString());
265 JSHandle<EcmaString> ecmaStrHandle(thread, result2);
281 auto result2 = BigIntAlgorithm(thread, vals2, 6, AlgorithmType::BIGINT_TOSTR, bigIntHandle.GetTaggedValue());
283 EXPECT_TRUE(result2.IsString());
284 JSHandle<EcmaString> ecmaStrHandle(thread, result2);
299 auto result2 = BigIntAlgorithm(thread, vals2, 4, AlgorithmType::BIGINT_VALUEOF, bigIntHandle.GetTaggedValue());
301 EXPECT_EQ(BigInt::SameValue(result1, result2), true);
318 auto result2 = BigIntAlgorithm(thread, vals2, 4, AlgorithmType::BIGINT_VALUEOF, jsPrimitiveRef.GetTaggedValue());
320 EXPECT_EQ(BigInt::SameValue(bigIntHandle.GetTaggedValue(), result2), true);