Lines Matching refs:int32_t
50 int32_t component_count,
67 ALWAYS_INLINE int32_t GetLength() REQUIRES_SHARED(Locks::mutator_lock_) { in GetLength()
71 void SetLength(int32_t length) REQUIRES_SHARED(Locks::mutator_lock_) { in SetLength()
101 void* GetRawData(size_t component_size, int32_t index) in GetRawData()
108 void* GetRawData(int32_t index) REQUIRES_SHARED(Locks::mutator_lock_) { in GetRawData()
114 const void* GetRawData(size_t component_size, int32_t index) const { in GetRawData()
120 const void* GetRawData(int32_t index) const { in GetRawData()
129 ALWAYS_INLINE bool CheckIsValidIndex(int32_t index) REQUIRES_SHARED(Locks::mutator_lock_);
131 EXPORT static ObjPtr<Array> CopyOf(Handle<Array> h_this, Thread* self, int32_t new_length)
139 EXPORT void ThrowArrayIndexOutOfBoundsException(int32_t index)
144 [[maybe_unused]] int32_t length_;
182 T Get(int32_t i) ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_);
184 T GetWithoutChecks(int32_t i) ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_) { in GetWithoutChecks()
189 void Set(int32_t i, T value) ALWAYS_INLINE REQUIRES_SHARED(Locks::mutator_lock_);
194 void Set(int32_t i, T value) ALWAYS_INLINE NO_THREAD_SAFETY_ANALYSIS;
201 void SetWithoutChecks(int32_t i, T value) ALWAYS_INLINE NO_THREAD_SAFETY_ANALYSIS;
208 void Memmove(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count)
216 EXPORT void Memcpy(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count)
229 extern template class PrimitiveArray<int32_t>; // IntArray
277 void Memcpy(int32_t dst_pos,
279 int32_t src_pos,
280 int32_t count,