Home
last modified time | relevance | path

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

/art/runtime/verifier/
Dreg_type_cache-inl.h44 if (precise && (value >= kMinSmallConstant) && (value <= kMaxSmallConstant)) { in FromCat1Const()
45 return *down_cast<const ConstantType*>(entries_[value - kMinSmallConstant]); in FromCat1Const()
Dreg_type_cache.h160 static constexpr int32_t kMinSmallConstant = -1; variable
162 static constexpr int32_t kNumSmallConstants = kMaxSmallConstant - kMinSmallConstant + 1;
Dreg_type_cache.cc55 for (int32_t value = kMinSmallConstant; value <= kMaxSmallConstant; ++value) { in FillPrimitiveAndSmallConstantTypes()
56 int32_t i = value - kMinSmallConstant; in FillPrimitiveAndSmallConstantTypes()