HomeSort by relevance Sort by last modified time
    Searched refs:kInvokeTypeMask (Results 1 - 2 of 2) sorted by null

  /art/compiler/dex/
mir_method_info.h 152 return static_cast<InvokeType>((flags_ >> kBitInvokeTypeBegin) & kInvokeTypeMask);
156 return static_cast<InvokeType>((flags_ >> kBitSharpTypeBegin) & kInvokeTypeMask);
217 static constexpr uint16_t kInvokeTypeMask = 7u;
218 static_assert((1u << (kBitInvokeTypeEnd - kBitInvokeTypeBegin)) - 1u == kInvokeTypeMask,
220 static_assert((1u << (kBitSharpTypeEnd - kBitSharpTypeBegin)) - 1u == kInvokeTypeMask,
mir_method_info.cc 130 it->flags_ = (it->flags_ & ~(kInvokeTypeMask << kBitInvokeTypeBegin)) |
170 (kInvokeTypeMask << kBitSharpTypeBegin));

Completed in 59 milliseconds