Lines Matching refs:zero
52 JSHandle<BigInt> zero = BigInt::Uint32ToBigInt(thread, 0);
53 EXPECT_EQ(BigInt::Compare(zero.GetTaggedValue(), bigint1.GetTaggedValue()), ComparisonResult::LESS);
54 EXPECT_EQ(BigInt::Compare(bigint1.GetTaggedValue(), zero.GetTaggedValue()), ComparisonResult::GREAT);
55 EXPECT_EQ(BigInt::Compare(zero.GetTaggedValue(), zero.GetTaggedValue()), ComparisonResult::EQUAL);
56 EXPECT_EQ(BigInt::Compare(zero.GetTaggedValue(), bigint3.GetTaggedValue()), ComparisonResult::GREAT);
57 EXPECT_EQ(BigInt::Compare(bigint3.GetTaggedValue(), zero.GetTaggedValue()), ComparisonResult::LESS);
340 JSHandle<BigInt> zero = BigInt::Int32ToBigInt(thread, 0);
341 JSHandle<BigInt> minusRes5 = BigInt::UnaryMinus(thread, zero);
343 EXPECT_TRUE(BigInt::Equal(zero.GetTaggedValue(), minusRes5.GetTaggedValue()));
369 JSHandle<BigInt> zero = BigInt::Int32ToBigInt(thread, 0);
403 JSHandle<BigInt> divRes5 = BigInt::Divide(thread, baseBigint, zero);
420 JSHandle<BigInt> remRes4 = BigInt::Remainder(thread, baseBigint, zero);
424 EXPECT_TRUE(BigInt::Equal(remRes5.GetTaggedValue(), zero.GetTaggedValue()));