Home
last modified time | relevance | path

Searched refs:quick_oat_code (Results 1 – 1 of 1) sorted by relevance

/art/dex2oat/linker/
Doat_writer_test.cc76 const void* quick_oat_code = oat_method.GetQuickCode(); in CheckMethod() local
77 EXPECT_TRUE(quick_oat_code != nullptr) << method->PrettyMethod(); in CheckMethod()
78 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2); in CheckMethod()
79 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned); in CheckMethod()
83 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size)) in CheckMethod()
85 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size)); in CheckMethod()