Searched refs:dst_array (Results 1 – 1 of 1) sorted by relevance
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 777 ObjPtr<mirror::Array> dst_array, in PrimitiveArrayCopy() argument 781 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) { in PrimitiveArrayCopy() 787 dst_array->GetClass()->GetComponentType()).c_str()); in PrimitiveArrayCopy() 791 ObjPtr<mirror::PrimitiveArray<T>> dst = ObjPtr<mirror::PrimitiveArray<T>>::DownCast(dst_array); in PrimitiveArrayCopy() 829 ObjPtr<mirror::Array> dst_array = dst_obj->AsArray(); in UnstartedSystemArraycopy() local 834 UNLIKELY(dst_pos > dst_array->GetLength() - length)) { in UnstartedSystemArraycopy() 837 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy() 855 dst_array->GetClass()->GetComponentType()).c_str()); in UnstartedSystemArraycopy() 860 ObjPtr<mirror::ObjectArray<mirror::Object>> dst = dst_array->AsObjectArray<mirror::Object>(); in UnstartedSystemArraycopy() 887 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy() [all …]
|