Lines Matching refs:x

875   HInstruction* x = InsertInstruction(  in TEST_F()  local
877 k_header->AddInput(x); in TEST_F()
881 EXPECT_STREQ("periodic((1), (0)):Int32", GetInductionInfo(x, 0).c_str()); in TEST_F()
894 HInstruction* x = InsertInstruction( in TEST_F() local
896 k_header->AddInput(x); in TEST_F()
900 EXPECT_STREQ("periodic(((1) ^ (1)), (1)):Int32", GetInductionInfo(x, 0).c_str()); in TEST_F()
913 HInstruction* x = InsertInstruction( in TEST_F() local
915 k_header->AddInput(x); in TEST_F()
919 EXPECT_STREQ("periodic(((1) ^ (100)), (1)):Int32", GetInductionInfo(x, 0).c_str()); in TEST_F()
932 HInstruction* x = InsertInstruction(new (GetAllocator()) HEqual(k_header, constant0_), 0); in TEST_F() local
933 k_header->AddInput(x); in TEST_F()
937 EXPECT_STREQ("periodic((1), (0)):Bool", GetInductionInfo(x, 0).c_str()); in TEST_F()
950 HInstruction* x = InsertInstruction(new (GetAllocator()) HEqual(constant0_, k_header), 0); in TEST_F() local
951 k_header->AddInput(x); in TEST_F()
955 EXPECT_STREQ("periodic((1), (0)):Bool", GetInductionInfo(x, 0).c_str()); in TEST_F()
968 HInstruction* x = InsertInstruction(new (GetAllocator()) HNotEqual(k_header, constant1_), 0); in TEST_F() local
969 k_header->AddInput(x); in TEST_F()
973 EXPECT_STREQ("periodic((1), (0)):Bool", GetInductionInfo(x, 0).c_str()); in TEST_F()
986 HInstruction* x = InsertInstruction(new (GetAllocator()) HNotEqual(constant1_, k_header), 0); in TEST_F() local
987 k_header->AddInput(x); in TEST_F()
991 EXPECT_STREQ("periodic((1), (0)):Bool", GetInductionInfo(x, 0).c_str()); in TEST_F()