HomeSort by relevance Sort by last modified time
    Searched defs:quick_code (Results 1 - 7 of 7) sorted by null

  /art/test/661-oat-writer-layout/
oat_writer_layout.cc 42 const void* quick_code = local
45 return static_cast<jlong>(reinterpret_cast<uintptr_t>(quick_code));
  /art/dex2oat/linker/
oat_writer_test.cc 79 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); local
80 EXPECT_FALSE(quick_code.empty());
81 size_t code_size = quick_code.size() * sizeof(quick_code[0]);
82 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
84 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
    [all...]
image_writer.cc 3373 const uint8_t* quick_code; local
3431 const void* quick_code; local
    [all...]
  /art/runtime/
instrumentation.cc 189 static void UpdateEntrypoints(ArtMethod* method, const void* quick_code)
191 method->SetEntryPointFromQuickCompiledCode(quick_code);
1008 const void* quick_code = NeedDebugVersionFor(method) local
    [all...]
class_linker.cc 3444 const void* quick_code = nullptr; local
3495 const void* quick_code = method->GetEntryPointFromQuickCompiledCode(); local
    [all...]
  /art/runtime/interpreter/
interpreter_common.cc 71 const void* quick_code = method->GetEntryPointFromQuickCompiledCode(); local
72 if (!runtime->GetClassLinker()->IsQuickToInterpreterBridge(quick_code)) {
    [all...]
  /art/oatdump/
oatdump.cc 1609 const void* quick_code = oat_method.GetQuickCode(); local
2139 const void* quick_code = m->GetEntryPointFromQuickCompiledCodePtrSize( local
    [all...]

Completed in 775 milliseconds