Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dunstarted_runtime.cc750 ObjPtr<mirror::Array> dst_array, in PrimitiveArrayCopy() argument
754 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) { in PrimitiveArrayCopy()
760 dst_array->GetClass()->GetComponentType()).c_str()); in PrimitiveArrayCopy()
764 ObjPtr<mirror::PrimitiveArray<T>> dst = ObjPtr<mirror::PrimitiveArray<T>>::DownCast(dst_array); in PrimitiveArrayCopy()
802 ObjPtr<mirror::Array> dst_array = dst_obj->AsArray(); in UnstartedSystemArraycopy() local
807 UNLIKELY(dst_pos > dst_array->GetLength() - length)) { in UnstartedSystemArraycopy()
810 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy()
833 dst_array->GetClass()->GetComponentType()).c_str()); in UnstartedSystemArraycopy()
838 ObjPtr<mirror::ObjectArray<mirror::Object>> dst = dst_array->AsObjectArray<mirror::Object>(); in UnstartedSystemArraycopy()
865 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
[all …]