Home
last modified time | relevance | path

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

/art/runtime/
Dmethod_info.h31 using MethodIndexType = uint16_t; variable
39 num_method_indices_ * sizeof(MethodIndexType)); in MethodInfo()
47 region_ = MemoryRegion(ptr, num_method_indices_ * sizeof(MethodIndexType)); in MethodInfo()
54 return (ptr - temp) + num_method_indices * sizeof(MethodIndexType); in ComputeSize()
57 ALWAYS_INLINE MethodIndexType GetMethodIndex(size_t index) const { in GetMethodIndex()
59 return region_.LoadBits(index * BitSizeOf<MethodIndexType>(), BitSizeOf<MethodIndexType>()); in GetMethodIndex()
62 void SetMethodIndex(size_t index, MethodIndexType method_index) { in SetMethodIndex()
63 region_.StoreBits(index * BitSizeOf<MethodIndexType>(), in SetMethodIndex()
65 BitSizeOf<MethodIndexType>()); in SetMethodIndex()