Home
last modified time | relevance | path

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

/art/compiler/
Dcompiled_method.cc28 quick_code_(storage->DeduplicateCode(quick_code)), in CompiledCode()
33 GetStorage()->ReleaseCode(quick_code_); in ~CompiledCode()
37 if (quick_code_ != nullptr) { in operator ==()
38 if (rhs.quick_code_ == nullptr) { in operator ==()
40 } else if (quick_code_->size() != rhs.quick_code_->size()) { in operator ==()
43 return std::equal(quick_code_->begin(), quick_code_->end(), rhs.quick_code_->begin()); in operator ==()
46 return (rhs.quick_code_ == nullptr); in operator ==()
Dcompiled_method-inl.h29 return GetArray(quick_code_); in GetQuickCode()
Dcompiled_method.h101 const LengthPrefixedArray<uint8_t>* const quick_code_; variable