• Home
  • Raw
  • Download

Lines Matching refs:InstructionSet

26   EXPECT_EQ(InstructionSet::kArm, GetInstructionSetFromString("arm"));  in TEST()
27 EXPECT_EQ(InstructionSet::kArm64, GetInstructionSetFromString("arm64")); in TEST()
28 EXPECT_EQ(InstructionSet::kX86, GetInstructionSetFromString("x86")); in TEST()
29 EXPECT_EQ(InstructionSet::kX86_64, GetInstructionSetFromString("x86_64")); in TEST()
30 EXPECT_EQ(InstructionSet::kMips, GetInstructionSetFromString("mips")); in TEST()
31 EXPECT_EQ(InstructionSet::kMips64, GetInstructionSetFromString("mips64")); in TEST()
32 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("none")); in TEST()
33 EXPECT_EQ(InstructionSet::kNone, GetInstructionSetFromString("random-string")); in TEST()
37 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kArm)); in TEST()
38 EXPECT_STREQ("arm", GetInstructionSetString(InstructionSet::kThumb2)); in TEST()
39 EXPECT_STREQ("arm64", GetInstructionSetString(InstructionSet::kArm64)); in TEST()
40 EXPECT_STREQ("x86", GetInstructionSetString(InstructionSet::kX86)); in TEST()
41 EXPECT_STREQ("x86_64", GetInstructionSetString(InstructionSet::kX86_64)); in TEST()
42 EXPECT_STREQ("mips", GetInstructionSetString(InstructionSet::kMips)); in TEST()
43 EXPECT_STREQ("mips64", GetInstructionSetString(InstructionSet::kMips64)); in TEST()
44 EXPECT_STREQ("none", GetInstructionSetString(InstructionSet::kNone)); in TEST()
48 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kThumb2), in TEST()
50 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kArm64), in TEST()
52 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kX86), in TEST()
54 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kX86_64), in TEST()
56 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kMips), in TEST()
58 EXPECT_EQ(GetInstructionSetInstructionAlignment(InstructionSet::kMips64), in TEST()