Lines Matching refs:int32_t
43 int32_t component_count,
59 ALWAYS_INLINE int32_t GetLength() REQUIRES_SHARED(Locks::mutator_lock_) { in GetLength()
63 void SetLength(int32_t length) REQUIRES_SHARED(Locks::mutator_lock_) { in SetLength()
76 void* GetRawData(size_t component_size, int32_t index) in GetRawData()
83 const void* GetRawData(size_t component_size, int32_t index) const { in GetRawData()
92 ALWAYS_INLINE bool CheckIsValidIndex(int32_t index) REQUIRES_SHARED(Locks::mutator_lock_);
94 Array* CopyOf(Thread* self, int32_t new_length) REQUIRES_SHARED(Locks::mutator_lock_)
102 void ThrowArrayIndexOutOfBoundsException(int32_t index)
106 int32_t length_;
133 T Get(int32_t i) ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_);
135 T GetWithoutChecks(int32_t i) ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_) { in GetWithoutChecks()
140 void Set(int32_t i, T value) ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_);
145 void Set(int32_t i, T value) ALWAYS_INLINE NO_THREAD_SAFETY_ANALYSIS;
152 void SetWithoutChecks(int32_t i, T value) ALWAYS_INLINE NO_THREAD_SAFETY_ANALYSIS;
159 void Memmove(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count)
167 void Memcpy(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count)
197 extern template class PrimitiveArray<int32_t>; // IntArray
236 void Memcpy(int32_t dst_pos,
238 int32_t src_pos,
239 int32_t count,