Searched refs:PrimitiveArray (Results 1 – 12 of 12) sorted by relevance
/art/runtime/mirror/ |
D | array.cc | 123 ObjPtr<PrimitiveArray<T>> PrimitiveArray<T>::Alloc(Thread* self, size_t length) { in Alloc() 126 GetClassRoot<PrimitiveArray<T>>(), in Alloc() 130 return ObjPtr<PrimitiveArray<T>>::DownCast(raw_array); in Alloc() 162 template class PrimitiveArray<uint8_t>; // BooleanArray variable 163 template class PrimitiveArray<int8_t>; // ByteArray variable 164 template class PrimitiveArray<uint16_t>; // CharArray variable 165 template class PrimitiveArray<double>; // DoubleArray variable 166 template class PrimitiveArray<float>; // FloatArray variable 167 template class PrimitiveArray<int32_t>; // IntArray variable 168 template class PrimitiveArray<int64_t>; // LongArray variable [all …]
|
D | array.h | 150 class MANAGED PrimitiveArray : public Array { 154 static ObjPtr<PrimitiveArray<T>> Alloc(Thread* self, size_t length) 157 static ObjPtr<PrimitiveArray<T>> AllocateAndFill(Thread* self, const T* data, size_t length) 195 void Memmove(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count) 203 void Memcpy(int32_t dst_pos, ObjPtr<PrimitiveArray<T>> src, int32_t src_pos, int32_t count) 207 DISALLOW_IMPLICIT_CONSTRUCTORS(PrimitiveArray); 211 extern template class PrimitiveArray<uint8_t>; // BooleanArray 212 extern template class PrimitiveArray<int8_t>; // ByteArray 213 extern template class PrimitiveArray<uint16_t>; // CharArray 214 extern template class PrimitiveArray<double>; // DoubleArray [all …]
|
D | array-alloc-inl.h | 170 inline ObjPtr<PrimitiveArray<T>> PrimitiveArray<T>::AllocateAndFill(Thread* self, in AllocateAndFill() 174 Handle<PrimitiveArray<T>> arr(hs.NewHandle(PrimitiveArray<T>::Alloc(self, length))); in AllocateAndFill()
|
D | array-inl.h | 65 inline T PrimitiveArray<T>::Get(int32_t i) { in Get() 74 inline void PrimitiveArray<T>::Set(int32_t i, T value) { in Set() 84 inline void PrimitiveArray<T>::Set(int32_t i, T value) { in Set() 94 inline void PrimitiveArray<T>::SetWithoutChecks(int32_t i, T value) { in SetWithoutChecks() 129 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, in Memmove() 130 ObjPtr<PrimitiveArray<T>> src, in Memmove() 191 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, in Memcpy() 192 ObjPtr<PrimitiveArray<T>> src, in Memcpy()
|
D | object.h | 51 template<class T> class PrimitiveArray; variable 52 typedef PrimitiveArray<uint8_t> BooleanArray; 53 typedef PrimitiveArray<int8_t> ByteArray; 54 typedef PrimitiveArray<uint16_t> CharArray; 55 typedef PrimitiveArray<double> DoubleArray; 56 typedef PrimitiveArray<float> FloatArray; 57 typedef PrimitiveArray<int32_t> IntArray; 58 typedef PrimitiveArray<int64_t> LongArray; 59 typedef PrimitiveArray<int16_t> ShortArray;
|
D | var_handle.cc | 1125 auto primitive_array = ObjPtr<PrimitiveArray<T>>::DownCast(target_array); in GetElementAddress()
|
/art/runtime/ |
D | class_root.h | 50 template<typename T> class PrimitiveArray; variable 88 … "[Z", mirror::PrimitiveArray<uint8_t>) … 89 … "[B", mirror::PrimitiveArray<int8_t>) … 90 … "[C", mirror::PrimitiveArray<uint16_t>) … 91 … "[D", mirror::PrimitiveArray<double>) … 92 … "[F", mirror::PrimitiveArray<float>) … 93 … "[I", mirror::PrimitiveArray<int32_t>) … 94 … "[J", mirror::PrimitiveArray<int64_t>) … 95 … "[S", mirror::PrimitiveArray<int16_t>) …
|
D | runtime.h | 72 template<class T> class PrimitiveArray; variable 73 typedef PrimitiveArray<int8_t> ByteArray;
|
D | thread.h | 71 template<class T> class PrimitiveArray; variable 72 typedef PrimitiveArray<int32_t> IntArray;
|
/art/runtime/native/ |
D | sun_misc_Unsafe.cc | 324 ObjPtr<mirror::PrimitiveArray<T>> array, in copyToArray() 338 ObjPtr<mirror::PrimitiveArray<T>> array, in copyFromArray()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 739 ObjPtr<mirror::PrimitiveArray<T>> src = ObjPtr<mirror::PrimitiveArray<T>>::DownCast(src_array); in PrimitiveArrayCopy() 740 ObjPtr<mirror::PrimitiveArray<T>> dst = ObjPtr<mirror::PrimitiveArray<T>>::DownCast(dst_array); in PrimitiveArrayCopy()
|
D | interpreter_common.cc | 1515 static void RecordArrayElementsInTransactionImpl(ObjPtr<mirror::PrimitiveArray<T>> array, in RecordArrayElementsInTransactionImpl()
|