Lines Matching defs:two

784         auto two = b.Double(2.0);
785 auto result = instcombie.VisitGate(b.DoubleMul(x, two));
811 auto two = b.Int32(2);
824 EXPECT_EQ(instcombie.VisitGate(b.Int32Mod(two, four)), two);
991 auto two = b.Int64(2);
995 EXPECT_EQ(instcombie.VisitGate(b.Int64And(two, one)), zero); // K & K => K
998 auto result = instcombie.VisitGate(b.Int64And(b.Int64And(x, one), two));
1012 auto two = b.Int32(2);
1016 EXPECT_EQ(instcombie.VisitGate(b.Int32And(two, one)), zero); // K & K => K
1019 auto result = instcombie.VisitGate(b.Int32And(b.Int32And(x, one), two));
1045 auto two = b.Int64(2);
1049 EXPECT_EQ(instcombie.VisitGate(b.Int64Or(two, one)), three); // 2 | 1 => 3
1066 auto two = b.Int32(2);
1070 EXPECT_EQ(instcombie.VisitGate(b.Int32Or(two, one)), three); // 2 | 1 => 3
1099 auto two = b.Int64(2);
1102 EXPECT_EQ(instcombie.VisitGate(b.Int64Xor(two, one)), three); // 2 | 1 => 3
1113 auto two = b.Int32(2);
1116 EXPECT_EQ(instcombie.VisitGate(b.Int32Xor(two, one)), three); // 2 | 1 => 3
1139 auto two = b.Int64(2);
1143 EXPECT_EQ(instcombie.VisitGate(b.Int64LSR(b.Int64(-8), two)), b.Int64(4611686018427387902u));
1144 EXPECT_EQ(instcombie.VisitGate(b.Int64LSR(b.Int64(8), two)), b.Int64(2));
1150 auto two = b.Int32(2);
1154 EXPECT_EQ(instcombie.VisitGate(b.Int32LSR(b.Int32(-8), two)), b.Int32(1073741822u));
1155 EXPECT_EQ(instcombie.VisitGate(b.Int32LSR(b.Int32(8), two)), b.Int32(2));
1176 auto two = b.Int64(2);
1181 EXPECT_EQ(instcombie.VisitGate(b.Int64ASR(b.Int64(-8), two)), b.Int64(-2));
1182 EXPECT_EQ(instcombie.VisitGate(b.Int64ASR(b.Int64(8), two)), b.Int64(2));
1187 auto two = b.Int32(2);
1192 EXPECT_EQ(instcombie.VisitGate(b.Int32ASR(b.Int32(-8), two)), b.Int32(-2));
1193 EXPECT_EQ(instcombie.VisitGate(b.Int32ASR(b.Int32(8), two)), b.Int32(2));
1212 auto two = b.Int64(2);
1216 EXPECT_EQ(instcombie.VisitGate(b.Int64LSL(b.Int64(1), two)), b.Int64(4));
1221 auto two = b.Int32(2);
1225 EXPECT_EQ(instcombie.VisitGate(b.Int32LSL(b.Int32(1), two)), b.Int32(4));