reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
609 APInt MinusOne = -One; 616 APInt AddLL = One + One; 616 APInt AddLL = One + One; 619 APInt AddLR = One + getRValue("1", RawDataR); 623 APInt AddRL = getRValue("1", RawDataL) + One; 632 APInt AddLK = One + 1; 635 APInt AddKL = 1 + One; 688 APInt SubLL = Two - One; 689 EXPECT_EQ(SubLL, One); 692 EXPECT_EQ(SubLR, One); 695 APInt SubRL = getRValue("2", RawDataL) - One; 696 EXPECT_EQ(SubRL, One); 700 EXPECT_EQ(SubRR, One); 705 EXPECT_EQ(SubLK, One); 707 APInt SubKL = 2 - One; 708 EXPECT_EQ(SubKL, One); 712 EXPECT_EQ(SubRK, One); 716 EXPECT_EQ(SubKR, One);