Home
last modified time | relevance | path

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

/art/runtime/
Dindirect_reference_table.cc115 static_assert(DecodeIndex(EncodeIndex(0u)) == 0u, "Index encoding error"); in ConstexprChecks()
116 static_assert(DecodeIndex(EncodeIndex(1u)) == 1u, "Index encoding error"); in ConstexprChecks()
117 static_assert(DecodeIndex(EncodeIndex(2u)) == 2u, "Index encoding error"); in ConstexprChecks()
118 static_assert(DecodeIndex(EncodeIndex(3u)) == 3u, "Index encoding error"); in ConstexprChecks()
Dindirect_reference_table.h334 static constexpr uint32_t DecodeIndex(uintptr_t uref) { in DecodeIndex() function
362 return DecodeIndex(reinterpret_cast<uintptr_t>(iref)); in ExtractIndex()